Forum Discussion
adding second header to table
- 7 years ago
Hi mkerfs,
I think this is hard to achieve in Table(if you add new row in table, it will affect the column value’s calculation), so I suggest you use Matrix to achieve this goal. If your data sample like below
Click query editor->Click last three columns->unpivot columns->close and apply, then add a column by expression like beow
Column = SWITCH(Table3[Attribute],"ad", "columna", "at", "columnb", "ac", "columnc")
Then you will get below result
Best Regards,
Zoe Zhi
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi mkerfs,
I think this is hard to achieve in Table(if you add new row in table, it will affect the column value’s calculation), so I suggest you use Matrix to achieve this goal. If your data sample like below
Click query editor->Click last three columns->unpivot columns->close and apply, then add a column by expression like beow
Column = SWITCH(Table3[Attribute],"ad", "columna", "at", "columnb", "ac", "columnc")
Then you will get below result
Best Regards,
Zoe Zhi
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.