Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
Wrap does not work! How to create multi line caption as below:
=[Branch Name]
='Profit and Loss'
='For the period ended '&Month&' '&Year
thanks in advance!
BR,
SAK
Try
=[Branch Name] & chr(10) & 'Profit and Loss' & chr(10) and 'For the period ended '&Month&' '&Year
Don't forget to enable the Wrap Text option on the Caption tab of the properties window and set the Caption Height to 3 lines.
Try
=[Branch Name] & chr(10) & 'Profit and Loss' & chr(10) and 'For the period ended '&Month&' '&Year
Don't forget to enable the Wrap Text option on the Caption tab of the properties window and set the Caption Height to 3 lines.
Have you tried chr(10)
eg.
=[Branch Name] & chr(10) &
'Profit and Loss' & chr(10) &
'For the period ended '&Month&' '&Year
But to how to export this caption to excel along with the chart.
That's only possible with a macro. See here for an example.
Thanks! so these are ASCII codes
http://www.techonthenet.com/ascii/chart.php
http://www.theasciicode.com.ar/ascii-control-characters/line-feed-ascii-code-10.html