Hello,
I have a data set where the number of fields will shift dynamically. I need to place an empty column in front of columns that contain one of two prefixes.
Example:
| Name | ID | ABC_923 | ABC_928 | Total | XYZ_876 | XYZ_572 |
| | | | | | | |
| | | | | | | |
Would be transformed into this:
| Name | ID | ABC_923_2 | ABC_923 | ABC_928_2 | ABC_928 | Total | XYZ_876_2 | XYZ_876 | XYZ_572_2 | XYZ_572 |
Any help would be hugely appreciated. Thanks!