I'm building a report using Report Builder 3.0.
The source system I'm working with has strings representing dates in the format of mm/dd/yy
, but I want to show this to the end users as dd-MMM-yy
instead. Using CDate
on the string will give me errors because it's interpreting the string in the dd/mm/yy
format (US regional settings).
Is there a way to convert the string to a date correctly without changing the regional settings (this isn't really an option)?
Thanks!