I have a Date field which is displayed as a series of numbers i.e. 200203051200310, and I want to convert this to a date field.
Attached is the formula that I have been using to convert the number to a date.
CDate(Mid([dbo_options]![LAST_UPDATE_MINI],7,2) & "/" & Mid([dbo_options]![LAST_UPDATE_MINI],5,2) & "/" & Left([dbo_options]![LAST_UPDATE_MINI],4))
When I try to refresh the report I get an 'Bad Date String Format' Message. Any Ideas
Attached is the formula that I have been using to convert the number to a date.
CDate(Mid([dbo_options]![LAST_UPDATE_MINI],7,2) & "/" & Mid([dbo_options]![LAST_UPDATE_MINI],5,2) & "/" & Left([dbo_options]![LAST_UPDATE_MINI],4))
When I try to refresh the report I get an 'Bad Date String Format' Message. Any Ideas