Hi,
I'm using this "current week to date"-query:
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:
Code:
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!