Hello !
I’m looking for a solution to find the different strings in one fret and erase them in another.
For the moment it looks like this:
REGEX_REPLACE(Concat, Del,""))
But it doesn’t work if in “Del” I put:
8hKitchen 9hRoom
And in Concat
9hRoom 10hDiner 8hKitchen 11hBathroom
I would like to delete: “8hKitchen” and “9hRoom” (but it can also be of other occurrence, more or less.)
Someone would have any idea ?
Thanks in advance

