Hi,
Could you please help me with the split lines in the file.
I have tried using the Text To Columns Tool and RegEx but it still does not work for me.
It is:
| File_name |
| PART_1_ADAM |
| PART_1_ADAM |
| PART_1_TOM |
| PART_1_TOM |
| PART_1_LUCAS |
| PART_1_LUCAS |
| PART_1_LUCAS |
| PART_1_LUCAS |
| PART_2_AMANDA |
| PART_2_AMANDA |
| PART_2_ANDREW |
Should be:
| File_name | Part | Person |
| PART_1_ADAM | PART_1 | ADAM |
| PART_1_ADAM | PART_1 | ADAM |
| PART_1_TOM | PART_1 | TOM |
| PART_1_TOM | PART_1 | TOM |
| PART_1_LUCAS | PART_1 | LUCAS |
| PART_1_LUCAS | PART_1 | LUCAS |
| PART_1_LUCAS | PART_1 | LUCAS |
| PART_1_LUCAS | PART_1 | LUCAS |
| PART_2_AMANDA | PART_2 | AMANDA |
| PART_2_AMANDA | PART_2 | AMANDA |
| PART_2_ANDREW | PART_2 | ANDREW |