-1

In the SSRS Report I need to show the below format in TextBox.

Example: By default, it should pick a current date.

**Data Reporting

18, April 2018**

How to write the Expression?

user9273914
  • 99
  • 2
  • 11

2 Answers2

2

Try Format(Now(),"MMMM dd,yyyy") which would yield April 18,2018. You could check this for more formats: https://dattatreysindol.files.wordpress.com/2011/02/ssrs_date_time_formatting_demo_1016x5701.png

Jerry
  • 127
  • 1
  • 9
0
="**Data Reporting "&Format(today,"dd, MMM yyyy")&"**"
RET
  • 861
  • 6
  • 15