P
Paul
I want to create a simple query, to ask the user for a start date and
end date, and it will display all records in my table tblGroups within
that date range,
I keep getting an error on this code that there are characters after
the end of the sql statement
PARAMETERS [Enter Start Date: mm/dd/yyyy] DateTime, [Enter End Date mm/
dd/yyyy] DateTime;
SELECT * FROM tblGroups;
WHERE date BETWEEN
[Enter Start Date: mm/dd/yyyy] AND [Enter End Date: mm/dd/yyyy];
Any ideas what I am doing wrong or if I am doing this correctly?
I then want to run a report based on this query.
end date, and it will display all records in my table tblGroups within
that date range,
I keep getting an error on this code that there are characters after
the end of the sql statement
PARAMETERS [Enter Start Date: mm/dd/yyyy] DateTime, [Enter End Date mm/
dd/yyyy] DateTime;
SELECT * FROM tblGroups;
WHERE date BETWEEN
[Enter Start Date: mm/dd/yyyy] AND [Enter End Date: mm/dd/yyyy];
Any ideas what I am doing wrong or if I am doing this correctly?
I then want to run a report based on this query.