Thursday, July 19, 2012

Format the Today's Date in SSRS Report.


Introduction:

Right click the Textbox Property and write the Expression.

=MonthName(Month(Now()),true) & " " & Day(Now()) & ", " & Year(Now())

This Expression will return the Date Like Jul 19,2012.

Similarly you can Format the Date as you want to set.

0 comments:

Post a Comment