Trying to run a query that takes the dates from 2 text boxes from another form.
This is the qry
Where the 2 text boxes are fromdate and todate.
However if i run the qry all i get is
What am i doing wrong?
This is the qry
Code:
SELECT Attend.AttStudent, Attend.AttType, Attend.AttDate
FROM Attend
WHERE (((Attend.AttDate) Between [form]![termdate]![fromdate] And [form]![termdate]![todate]));
However if i run the qry all i get is
What am i doing wrong?