Hello community,
So my issue is that I have a combined field coming from an excel file with hundreds of rows that looks something like this:
1. Lab Category A
a. Lab abc
b. Lab xyz
2. Lab Category B
a. Lab lmn
b. Lab dfc
Basically I want to break apart this column and assign the lab category to the matching labs beneath it until I hit the next lab category like this:
Lab abc Lab Category A
Lab xyz Lab Category A
Lab lmn Lab Category B
Lab dfc Lab Category B
I have tried Regex Match to no avail thus far. Thank you for any assistance!