I am trying to split the following text in the columns as such with the before split into multiple columns so I can later group by columns B and D
I have also attached the excel file for reference
Solved! Go to Solution.
Hi @katonyaj
We can do this with regex parsing:
(.*)\.(.*)\.{3}(.*)\s(.*)
Thanks a bunch!!