My report displays the date time as "Friday, May 08, 2015" but I'd like to remove the 0 in the date field if the value is a single digit.
Should I use an expression to handle this? And if so, could I get some help on the expression?
Thanks,
My report displays the date time as "Friday, May 08, 2015" but I'd like to remove the 0 in the date field if the value is a single digit.
Should I use an expression to handle this? And if so, could I get some help on the expression?
Thanks,
Yes, use an expression, the expression will look like this (replace Now()
with your date value)
=Format(Now(), "dddd, MMM d, yyyy")
It is best practice to use this expression:
=Format(Now(), "dddd, MMM d, yyyy")
with
dddd
the week dayMMM
the monthd
the day of the monthyyyy
the year on 4 digits