I'm using find and replace to append columns in Table1, Not sure how to append dynamic columns
Problem = column are dynamic not fixed changed every time based on input ( using {Append fields to records} of find and replace tool)
Find column 2 i.e. ID
Table1
| item | id |
| 123 | 549 |
| 456 | 666 |
| 789 | 6614 |
and match in Replace field column 2 i.e. order-ID
Table2
| Record | order-ID | 1 | 2 | 3 | 4 | 5 | 6 | 7 |
1 | 549 | xyz | abc | | | | | |
2 | 666 | mhl | def | | | | | |
| 3 | 6614 | ghi | jak | mno | qwe | tyu | ews | ghj |
| 4 | 789 | pqr | stu | | | | | |
5 | 899 | fgh | klj | | | | | |
Expected Result only ids which matching with table 2 append columns
| item | id | 1 | 2 | 3 | 4 | 5 | 6 | 7 |
| 123 | 549 | xyz | abc | | | | | |
| 456 | 666 | mhl | def | | | | | |
| 789 | 6614 | ghi | jak | mno | qwe | tyu | ews | ghj |