brother
04-22-2009, 11:20 PM
Hi,
I'm using this "current week to date"-query from ajetrumpet's thread: (http://www.access-programmers.co.uk/forums/showthread.php?t=157264)
SELECT Table.DateField
FROM Table
WHERE [Table.DateField] BETWEEN
DateAdd("d", -((Weekday(Date()) - 1)), Date()) AND
Date();
How can I get this SQL statement to go one week back starting with [LastOfDateField]?
Thanks!
I'm using this "current week to date"-query from ajetrumpet's thread: (http://www.access-programmers.co.uk/forums/showthread.php?t=157264)
SELECT Table.DateField
FROM Table
WHERE [Table.DateField] BETWEEN
DateAdd("d", -((Weekday(Date()) - 1)), Date()) AND
Date();
How can I get this SQL statement to go one week back starting with [LastOfDateField]?
Thanks!