Hi all, I have a transaction dataset in which amount is in line 1 and tax is in line 2. I want to bring this into 1 line with side by side column having amount and tax. The key is the invoice num (or reference in my case)
Input
| Invoice num | tax code | USDamount |
| 123 | P1 | 100 |
| 123 | P1 | 1000 |
Expected output
| invoice num | tax code | Amount | Tax |
| 123 | P1 | 1000 | 100 |