Forum Discussion
Anonymous
8 years agoNot applicable
Add line break to column header in matrix visualisation
Hello All, Please does anyone know whether it's possible yet to add a line break in a column header in the matrix visualisation? Thanks, MR
- 8 years ago
Anonymous,
You may use the following calculated column.
Column = SUBSTITUTE ( Table1[Column2], UNICHAR ( 32 ), UNICHAR ( 10 ) )
Anonymous
8 years agoNot applicable
Thanks Thejeswar, I was trying to do like this:
change:
December YTD
to this:
December
YTD
But I guess it is not possible. Sure wastes a lot of space!
Thanks for your help.
CM
v-chuncz-msft
8 years agoCommunity Support
Anonymous,
You may use the following calculated column.
Column = SUBSTITUTE ( Table1[Column2], UNICHAR ( 32 ), UNICHAR ( 10 ) )
- Anonymous7 years agoNot applicable
v-chuncz-msft wrote:
Anonymous,
You may use the following calculated column.
Column = SUBSTITUTE ( Table1[Column2], UNICHAR ( 32 ), UNICHAR ( 10 ) )
Why is this accepted as a solution?