I'm trying to overcome some problems I'm experiencing with my SQL statement that's supposed to update the field type of every cell of a particular column from a text value to a date value.
The contents of each cell are in the format x/xx/20xx, so there shouldn't be a problem converting, should there?
DoCmd.RunSQL "UPDATE [" & File & "] SET [" & File & "].[Date Add] = CDate();"
I'm sure there's something wrong with my SQL syntax.
Please help.
The contents of each cell are in the format x/xx/20xx, so there shouldn't be a problem converting, should there?
DoCmd.RunSQL "UPDATE [" & File & "] SET [" & File & "].[Date Add] = CDate();"
I'm sure there's something wrong with my SQL syntax.
Please help.