Forum Discussion
Anonymous
6 years agoNot applicable
dynamic title
Hello, I am using a dynamic title like the one below and I would like to add a carriage return and line feed so the selected date appears under the text. Title2 = "Hit Rate " & "\n\r " & f...
- 6 years ago
Try line
"Hit Rate " & NewLine & format([Selected date], "yyyy-mm-dd")
"Hit Rate " & unichar(10) & format([Selected date], "yyyy-mm-dd")
amitchandak
6 years agoSuper User
Try line
"Hit Rate " & NewLine & format([Selected date], "yyyy-mm-dd")
"Hit Rate " & unichar(10) & format([Selected date], "yyyy-mm-dd")
- Anonymous6 years agoNot applicable
Here's what I have done.
Title2 = "Hit Rate " & UNICHAR(13) & UNICHAR(10) & format([Selected date], "yyyy-mm-dd")and in the format section, under title, I have set word wrap to off.Thank you very much