Ok... This is the code that I have so far.
What I want to do is do a range for each on of the Selects'. for boarder it would be [date boarded], for prestacker it would be [date prestacked], for poststacker it would be [date stacked for postfunding] I would like to only have to input one set of date ranges (Enter Start Date: and Enter End Date
if possible. If anyone has anything that they can contribute to help out I would appreciate it.
Thanks,
Thanks,
PROXI
Code:
SELECT borrower FROM New_main_info,Boarders
WHERE Boarder=Employee
AND Unumber=Environ("username")
UNION
SELECT borrower FROM New_main_info,Boarders
WHERE prestacker=Employee
AND Unumber=Environ("UserName")
UNION SELECT borrower FROM New_main_info,Boarders
WHERE poststacker=Employee
AND Unumber=Environ("UserName");
What I want to do is do a range for each on of the Selects'. for boarder it would be [date boarded], for prestacker it would be [date prestacked], for poststacker it would be [date stacked for postfunding] I would like to only have to input one set of date ranges (Enter Start Date: and Enter End Date
Thanks,
Thanks,
PROXI