Dear all,
I run into a problem when splitting a string and regrouping it based on different criteria. I tried various formulas and workflows and I am still stuck to find a structured workflow.
The initial data looks like :
| 001 | ABC 123 M @# |
| 001 | ABC 798 M @# |
| 001 | ABC 7 @# |
| 001 | |
| 002 | F 421 # |
| 003 | |
| 003 | |
What output should be is :
| 001 | ABC | 123 M | @# |
| 001 | ABC | 798 M | @# |
| 001 | ABC | 7 | @# |
| 001 | ABC | | |
| 002 | F | 421 | # |
| 003 | GHJK | 433 | |
| 003 | GHJK | | |
Many thanks for your input.