Hi,
I am trying to create a pivot table similar to excel by using cross tab on 2 fields at the same time. My source data is something similar to the below
| Account | Field 1 | Field 2 | Sum_ Amount |
| 502009 | 170 | CIR | 0 |
| 502009 | 170 | URO | 0 |
| 502009 | 3670 | 999 | 0 |
| 502009 | 3670 | LCS | 9346490 |
| 510007 | 10 | BRI | 14874.14 |
| 510007 | 10 | CER | 19840.16 |
| 510007 | 10 | HYD | -1403.36 |
| 510007 | 10 | PIR | 3919.7 |
and the desired format is the following
| | 10 | 10 | 10 | 10 | 170 | 170 | 3670 | 3670 |
| Account | BRI | CER | HYD | PIR | CIR | URO | 999 | LCS |
| 502009 | | | | | 0 | 0 | 0 | 9346490 |
| 510007 | 14874.14 | 19840.16 | -1403.36 | 3919.7 | | | | |
I essentially want the top row of my data table to be repeated/group by "Field 1" and "Field 2" respectively. On Excel I can achieve this by choosing "Field 1" and "Field 2" as "Columns" in a pivot table but I cannot figure out what is the process for Alteryx?
Any help will be much appreciated!