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 " & format([Selected date], "yyyy-mm-dd")
 
What I would like to see in the visualization, if the selected date = today  is:
 
                               Hit Rate
                             2020-03-11

 

Regards,

 

  • Try line

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


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

     

2 Replies

  • Try line

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


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

     

    • Anonymous's avatar
      Anonymous
      Not 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