In my current Alteryx workflow, I used the cross tab function to have by data broken out by columns rather that rows. For instance, say the data was:
| | January | Feb | March |
| Candy | 1 | 2 | 1 |
| Sports Drinks | 3 | 4 | 5 |
| Snacks | 4 | 3 | 2 |
Instead, I wanted to see the data as such:
| | Candy | Sports Drinks | Snacks |
| January | 1 | 3 | 4 |
| Feb | 2 | 4 | 3 |
| March | 1 | 5 | 2 |
I have been able to do that successfully through the cross-tab tool, but here is the issue I am facing. Another report I want to compare it against, orders their inventory differently, and so the second report may show the headers as: "Snacks, Sports Drinks, Candy".
The order of the second report is consistent and I have a sheet with the Column Number that each inventory item should belong in. So what I need help doing is:
1) Figuring out how I can insert a blank row into my data after the Cross-tab
2) Essentially VLOOKUP what column number each inventory item belongs in (this column number would go into the blank cell I created in the row under neath the header)
3) Horizontally sort the data so that the order is ascending
Does anyone have any ideas? Thank you all in advance.