Create Date Range within a multi field search?

kevin19

Registered User.
Local time
Today, 01:17
Joined
Jan 28, 2013
Messages
81
For example, I have a few combo boxes and text boxes for my advance search. The search works fine.Is it possible to incorporate a range between two dates into my multi field search?
All these boxes are unbound.
Possible help??
 
The short answer is yes, your criteria might look something like;

Code:
Between Forms!YourFormName!StartDateField And Forms!YourFormName!EndDateField
 
Thanks John!
But does it work as I have 3 date fields in my multi search. Action date, compliance date and deadline. If I use your criteria how do we know which date field it is referring to?
I am not that clever!
 
You will need to change the field names to reflect the reality of your DB. A Between argument can only be between two fields so you will need to decide which of those two fields you name.
 

Users who are viewing this thread

Back
Top Bottom