Hello everyone,
I have an issue trying to clean the a column on my workflow.
I got this table and would like to clean column A by removing the occurrences
| A | B | C |
| hi,hi,hi,hi,hello | 1 | 45 |
| ab,ab,an,an | 2 | 54 |
| de,bon,bon | 3 | 32 |
I should have this result:
| A | B | C |
| hi,hello | 1 | 45 |
| ab,an | 2 | 54 |
| de,bon | 3 | 32 |
Thank you in advance for your help