converting string to date

  • Thread starter Thread starter dana livni
  • Start date Start date
D

dana livni

Could anyone help me with the following:
I have a field in my access database in a string format and i need to
convert it into a date in order to comper it to other dates.
the format of the data is 01-jun-03.
This needs to be done in an inline SQL function that will be used in a
SQL statement.
Any help would be GREATLY appreciated.

Thanks,
dana livni
 
dana livni said:
Could anyone help me with the following:
I have a field in my access database in a string format and i need to
convert it into a date in order to comper it to other dates.
the format of the data is 01-jun-03.
This needs to be done in an inline SQL function that will be used in a
SQL statement.
Any help would be GREATLY appreciated.

DateValue([YourField])
or
CDate([YourField])
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top