Hey everyone,
I know this is a simple one but I could not find the answer in any previous posts.
I'm trying to create a query telling the user how many days late a project is. So I need to get the difference of the Due Date in my table and today's date.
So I would have thought it would have been:
SELECT MyTable.ID, DateDiff("d",[DateDue],[Date()]) AS DaysLate
FROM MyTable;
but Access doesn't recognize the Date() function in my expression. What am I doing wrong?
Thanks in advance for the help.
Collen
I know this is a simple one but I could not find the answer in any previous posts.
I'm trying to create a query telling the user how many days late a project is. So I need to get the difference of the Due Date in my table and today's date.
So I would have thought it would have been:
SELECT MyTable.ID, DateDiff("d",[DateDue],[Date()]) AS DaysLate
FROM MyTable;
but Access doesn't recognize the Date() function in my expression. What am I doing wrong?
Thanks in advance for the help.
Collen