Hi,
I have a column of data that looks like "Original Field" below. In my actual data, the 2 character codes will vary from row to row, but no 2 character code will repeat in the same field
The yes's and no's will also vary, as well as the total number of segments, i.e. one row of data could just be "No - GR" or it could be upwards of 10-12 segments in some instances.
I am looking for a Regex solution to pull the No items out into one column and have a mimic of that process that puts the Yes items into another column.
| Original Field | Yes Column | No Column |
| Yes - GP, No - GR, Yes - WS, Yes - JL, No - MP, Yes - MR | Yes - GP, Yes - WS, Yes - JL, Yes - MR | No - GR, No - MP |
I am not sure how to pull this one off.
Any suggestions would be greatly appreciated.
Thanks!