how could I format this; 20061002120000[0:GMT] into a real date like
10/21/2006 so access will understand it?
You need to 'parse' it, not format. One question - is there a typo of an
extra zero between the nonth and day?
Assuming it is a typo then use this ---
DateSerial(Left([YourFieldName],4),Right(Left([YourFieldName],6),2),Right(Left([YourFieldName],8),2))
If it is not a typo then use this ---
DateSerial(Left([YourFieldName],4),Right(Left([YourFieldName],6),2),Right(Left([YourFieldName],9),2))
I have a csv file with a date field, how could I format this; 20061002120000
[0:GMT] into a real date like 10/21/2006 so access will understand it?