Query 7 Days (1 Viewer)

LSTC018

Registered User.
Local time
Today, 18:25
Joined
Jan 17, 2019
Messages
19
Hi,


I am a total beginner looking for a little guidance - I would like a criteria query that will give me records for a total 7 days from a certain date,


Cheers


LSTC
 

plog

Banishment Pending
Local time
Today, 12:25
Joined
May 11, 2011
Messages
11,644
In the SQL:

WHERE [YourDateField]>Date() AND [YourDateField]<=(Date() + 7)

Or in Query Builder:

Bring down your Datefield, then in its criteria section put:

>Date() AND <=(Date() + 7)
 

Users who are viewing this thread

Top Bottom