Fairly new to Access/SQL and have come across an issue I need assistance with.
I'm trying to get a query built upon user input. I have a form with 2 text input boxes. One box is for start date and the other for end date.
What I need for my report is assistance in getting that information to be reported on when the submit button is clicked. Below is the current working SQL query I have without the date query
Somehow I need to get it to query my report to reflect the CurrentDate to span whatever the Start Date(frmStartDate) and the End Date (frmEndDate) is. So if start date is 4/21 and end date is 4/22, it needs to pull information from those 2 days.
Any help on this is appreciated. TIA!
Enkrypted
A+
I'm trying to get a query built upon user input. I have a form with 2 text input boxes. One box is for start date and the other for end date.
What I need for my report is assistance in getting that information to be reported on when the submit button is clicked. Below is the current working SQL query I have without the date query
Code:
SELECT OptionsValues.AgentAssisted, OptionsValues.CurrentDate, OptionsValues.Duration
FROM OptionsValues
WHERE (((OptionsValues.Cable) Is Not Null))
ORDER BY OptionsValues.AgentAssisted;
Somehow I need to get it to query my report to reflect the CurrentDate to span whatever the Start Date(frmStartDate) and the End Date (frmEndDate) is. So if start date is 4/21 and end date is 4/22, it needs to pull information from those 2 days.
Any help on this is appreciated. TIA!
Enkrypted
A+