I currently have:
Quarter | Q_Category | Q_Description | Value |
Q2 | pets | dogs | 0.123456 |
Q3 | pets | dogs | 0.123456 |
Q2 | pets | cats | 0.123456 |
Q3 | pets | cats | 0.123456 |
Q2 | family | mom | 0.123456 |
Q3 | family | mom | 0.123456 |
Q2 | family | dad | 0.123456 |
Q3 | family | dad | 0.123456 |
but need the data to look like this:
Q_Category | Q_Description | Q2 Value | Q3 Value |
pets | dogs | 0.123456 | 0.123456 |
pets | cats | 0.123456 | 0.123456 |
family | mom | 0.123456 | 0.123456 |
family | dad | 0.123456 | 0.123456 |
I am very new to Alteryx and am having a difficult time trying to move/separate these values. Any ideas would be great! Thanks!