I need to write a query that calculates the number of weeks left between today() and April 1, 2007. I wrote the following, but although it does not give me an error, it does not display anything:
SELECT DateDiff("ww", now(),"April 1, 2007") AS Weeks
FROM tblTest;
I don't really need tblTest but I don't know any other way to do this. Does access have a fake table that one can use in cases like this?
I would appreciate if someone can guide me.
Thank you
SELECT DateDiff("ww", now(),"April 1, 2007") AS Weeks
FROM tblTest;
I don't really need tblTest but I don't know any other way to do this. Does access have a fake table that one can use in cases like this?
I would appreciate if someone can guide me.
Thank you