Date Query

Ron Wilson

Registered User.
Local time
Today, 18:03
Joined
Feb 12, 2008
Messages
11
Hi, Im trying to create a query where the only results returned are ones greater than or equal to the date I have the user enter. So for example the user enters 1/1/08, the only results returned are those with a date later than or equal to 1/1/08. This is what I have and it isnt working!

Like [Enter Start Date] & > "*"

Thanks...
 
not like etc but
(for greater/equal to)
>= [Enter Start Date]

or

(for less/equal to)
<= [Enter Start Date]
 
Thanks. I had a complete brain freeze!
 

Users who are viewing this thread

Back
Top Bottom