worHi all
Struggling with this one but know it'll be obvious once/if some kind folk can help with this quandry:
I have some information presented in this format
Entity |
123 |
1314 |
1231239 |
1231234 |
Region A |
123123231 |
12131 |
Region B |
123123654 |
13435124 |
1235463 |
1231321689 |
Region C |
That I need to get into this format
Entity | Region |
123 | Region A |
12313 | Region A |
123123 | Region A |
234 | Region A |
2352342 | Region B |
2342343 | Region B |
345345 | Region C |
34353254 | Region C |
345433 | Region C |
233542 | Region C |
Tried generating rows and appending based on record ID position of the region but I just can't quite get there so would be very grateful for some assistance please!
Thanks in advance
CK
Solved! Go to Solution.
Hi @ck2024
Here's how I'd do this:
Thank you @Luke_C - my hero!