Hello guys,
this question is not Alteryx related. Hope its okay 
I have a problem with my data output.
It looks like this (only with more columns) - All this Rows just differ in two columns here "Value" and "Value Describer"
| Key | Value | ValueDescriber | Dimension1 | Dimension2 | Dimension3 | Dimension4 |
| cx_01 | 55 | a | QWER | ABC | DFG | FGH |
| cx_01 | 23 | b | QWER | ABC | DFG | FGH |
| cx_01 | 21 | c | QWER | ABC | DFG | FGH |
| bn_21 | 6 | a | ASDF | TGB | RFV | IKL |
| bn_21 | 12 | b | ASDF | TGB | RFV | IKL |
| bn_21 | 4 | c | ASDF | TGB | RFV | IKL |
Would it be better to have it like this?:
| Key | Value_a | Value_b | Value_c |
| cx_01 | 55 | 23 | 21 |
| bn_21 | 6 | 12 | 4 |
What would you say how a good structerd output table should look like?
(PS: The Output is used for Tableau)