T thart21 Registered User. Local time Today, 12:31 Joined Jun 18, 2002 Messages 236 Nov 8, 2006 #1 Looked through DateSerial but possibly not the way to go. I have a text field, "Month", with the dates in this format: Jan-06, Feb-06. What do I use to convert these to date format? 1/1/06, 2/1/06. Thanks Toni
Looked through DateSerial but possibly not the way to go. I have a text field, "Month", with the dates in this format: Jan-06, Feb-06. What do I use to convert these to date format? 1/1/06, 2/1/06. Thanks Toni
gemma-the-husky Super Moderator Staff member Local time Today, 20:31 Joined Sep 12, 2006 Messages 16,072 Nov 8, 2006 #2 try mydate = DateValue("1-" & [month]) access will know "1-jan-06" as a date and convert it to a datetype with datevalue.
try mydate = DateValue("1-" & [month]) access will know "1-jan-06" as a date and convert it to a datetype with datevalue.
T thart21 Registered User. Local time Today, 12:31 Joined Jun 18, 2002 Messages 236 Nov 9, 2006 #3 Thanks a lot, I will try that.