Hi
I am having a hard time to parse and combine the columns of a nested json after cross tab. I am stuck on the below:
| RecordID | cusip2Set_cusip2Record_0_code | cusip2Set_cusip2Record_0_identifier | cusip2Set_cusip2Record_1_code | cusip2Set_cusip2Record_1_identifier |
| 1 | A | 123456789 | I | US1234567892 |
| 2 | I | US23456677775 | | |
the result i am expecting would be something like the below
| RecordID | A | I |
| 1 | 123456789 | US1234567892 |
| 2 | | US23456677775 |
thank you in advance!