Reputation: 2455
In a previously created report is it possible to to edit the column title? Namely, some of my columns have very long names, and I wouldn't like to make a column too wide, but I would like to break the title in a specific places. Where and how can I do that?
Thanks! A.
Upvotes: 0
Views: 2441
Reputation: 8567
You could do this by turning the column title into a formula and using the char()
function to introduce a carriage return.
E.g.
= "This is the first line" + char(10) + char(13) + "and this is the second line"
Upvotes: 2