Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
6 years ago
Solved

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...
  • amitchandak's avatar
    6 years ago

    Try line

    "Hit Rate " & NewLine & format([Selected date], "yyyy-mm-dd")


    "Hit Rate " & unichar(10) & format([Selected date], "yyyy-mm-dd")