6 months ago

V

Van T. Dinh

SELECT *
FROM YourTable
WHERE [DateField] BETWEEN DateAdd("m", -6, Date()) AND Date()
 
D

Dan Artuso

Hi,
Use the DateSerial function.
6 months ago would be:
DateSerial(Year(Date()),Month(Date()) - 6,Day(Date()))
 
Top