Hi All,
I am having abit of a mare and struggling to think of how to solve this use case.
I have the following excel and the data structure is as follows, ( every 2 rows are a group)
Source | Identifier | Name | Address |
UNKNOWN | xxxxxxxx | Mason LTD | 123 High Street |
DB | 111111111 | Mason LTD | 1234 High Street |
My steps so far is as follows ;
This gives me the following
Record | Source | Identifier | Name | Address | Group |
1 | UNKNOWN | xxxxxxxx | Mason LTD | 123 High Street | 1 |
2 | DB | 111111111 | Mason LTD | 1234 High Street | 1 |
From here what i would like to do is get to this outcome
Group | Identifier | Identifier | Name | Name | Address | Address |
1 | xxxxxxxx | 111111111 | Mason LTD | Mason LTD | 123 High Street | 1234 High Street |
Really appreciate any assistance
Kind Regards
Masond3
Solved! Go to Solution.
Hi @Masond3
Here's an example of an approach you can take. Note, you can't have multiple fields with the same name.