G Guest Aug 10, 2005 #1 I have a field in a table that is text in the format of yyyymmdd. I need to convert this data to a date format (mm/dd/yyyy).
I have a field in a table that is text in the format of yyyymmdd. I need to convert this data to a date format (mm/dd/yyyy).
G Guest Aug 10, 2005 #2 Check the Help Files, for syntax, but I'm pretty sure the command is CDate. HTH Sharkbyte
F fredg Aug 10, 2005 #3 I have a field in a table that is text in the format of yyyymmdd. I need to convert this data to a date format (mm/dd/yyyy). Click to expand... Your date looks like this "20050810" ? =DateSerial(Left([FieldName],4),Mid([FieldName],5,2),Right([FieldName],2))
I have a field in a table that is text in the format of yyyymmdd. I need to convert this data to a date format (mm/dd/yyyy). Click to expand... Your date looks like this "20050810" ? =DateSerial(Left([FieldName],4),Mid([FieldName],5,2),Right([FieldName],2))