I need help on how to achieve this in Alteryx. Anyone that knows how?
Create table 2 based on table 1:
Table 1
Customer name | Period 01 2019 | Period 02 2019 | Period 03 2019 |
A | 3,14 | 6 | 8,5 |
B | 1 | 2 | 3 |
Table 2
Customer name | Period | Value |
A | 01 2019 | 3,14 |
A | 02 2019 | 6 |
A | 03 2019 | 8,5 |
B | 01 2019 | 1 |
B | 02 2019 | 2 |
B | 03 2019 | 3 |
Solved! Go to Solution.
Hi @fredrikw you can use the transpose tool to produce the output you describe.
Hi @JS420, thank you so much! 🙂
your welcome @fredrikw I amended the workflow slightly to remove period from the name column.
Your'e too kind, thanks! 🙂