I don't understand why this won't work.
I have a date field in a table. The default value for this field is Date().
The data type is Date/Time
The field is called Import Date.
Here is what I am trying to do in a query:
Month Imported: DatePart('m', 'Import Date')
I am getting a data type mismatch, and I don't see how.
If I put this:
Month Imported: DatePart('m', Date())
It works fine.
I have a date field in a table. The default value for this field is Date().
The data type is Date/Time
The field is called Import Date.
Here is what I am trying to do in a query:
Month Imported: DatePart('m', 'Import Date')
I am getting a data type mismatch, and I don't see how.
If I put this:
Month Imported: DatePart('m', Date())
It works fine.