S sushmitha Registered User. Local time Today, 17:52 Joined Jul 30, 2008 Messages 55 Aug 21, 2008 #1 I have a date in my access table as yyyymmdd whose datatype is text I am using format([date], "mm/dd/yyyy") to convert to date in mm/dd/yyyy It is throwing error #Error Can anybody help me on this
I have a date in my access table as yyyymmdd whose datatype is text I am using format([date], "mm/dd/yyyy") to convert to date in mm/dd/yyyy It is throwing error #Error Can anybody help me on this
M Mike375 Guest Aug 21, 2008 #2 This would probably be a "work around" way Mid([abc],5,2) & "" & "/" & "" & Right([abc],2) & "" & "/" & "" & Left([abc],4)
This would probably be a "work around" way Mid([abc],5,2) & "" & "/" & "" & Right([abc],2) & "" & "/" & "" & Left([abc],4)