Hi Team,
Need your help
I have data coming in via different externals system and majority (90%) the format of the "External system ID" is in the following format "ABC_123456_Mason"
Consequently i have used the Text to Column functionality to split the data into 3 columns anytime it find an "_" (See below SC)
| External System | External ID | Column A | Column B | Column C |
| Mason1 | ABC_123456_Morgan | ABC | 123456 | Mason |
| Mason2 | AVI_600291_CV15NR | AVI | 600291 | CV15NR |
However there is one external system "Mason3" which does it a bit differently and provides data into the following format "AAA_123456Morgan". Which means anything after the first "_" is bundled into column B
| External System | External ID | Column A | Column B | Column C |
| Mason1 | ABC_123456_Morgan | ABC | 123456 | Mason |
| Mason2 | AVI_600291_CV15NR | AVI | 600291 | CV15NR |
| Mason3 | MAS_461598TA44NG | SKA | 461598TA44NG | |
Just for an external system "Mason3" is there a way to extract the first 6chars after the "_" and put into column b, any other digits after the 6 digits go into column c ?
Expected Outcome
| Primary System | External ID | Column A | Column B | Column C |
| Mason1 | ABC_123456_Morgan | ABC | 123456 | Mason |
| Mason2 | AVI_600291_CV15NR | AVI | 600291 | CV15NR |
| Mason3 | MAS_461598TA44NG | SKA | 461598 | TA44NG |

Looking forward to your help
Many thanks