I have a table with dates field and Im creating an email alert everytime the table gets updated. I tried to use the MAX([date]) but its not working is there any other way to do this?
sql command
SELECT Max([cmr_filestorage]![date_add]) AS date_add, cmr_filestorage .author, cmr_filestorage .requestor, cmr_filestorage .category, cmr_filestorage .description, cmr_filestorage .file
FROM cmr_filestorage ;
error
You tried to execute a query that does not include the specified expression 'author' as part of aggregate function.
sql command
SELECT Max([cmr_filestorage]![date_add]) AS date_add, cmr_filestorage .author, cmr_filestorage .requestor, cmr_filestorage .category, cmr_filestorage .description, cmr_filestorage .file
FROM cmr_filestorage ;
error
You tried to execute a query that does not include the specified expression 'author' as part of aggregate function.
Comment