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 ) )
woody1957
1 year agoRegular Visitor
try this:
| CombinedInfoColumn = Table.AddColumn( |
| Source, |
| "Combined Info", |
| each Text.Combine({[Start Priority],Date.ToText([#"GMP/Construction Start Date"], "yyyy-MM-dd"), [Project Name]}, Character.FromNumber(10)), // Combines date and project name with a line break |
| type text |
| ) |
| in |
| CombinedInfoColumn |