I want to filtre a form to show only records <= current date and have the following SQL for the form
I have no complie error but the form does not appear to filtre the records according to my criteria?
Code:
SELECT tblRoomsBooking.BookLocation, tblRoomsBooking.BookStartDate, tblRoomsBooking.BookTime, tblRoomsBooking.BookEndTime, tblRoomsBooking.BookName, tblRoomsBooking.Faculty, tblRoomsBooking.myID FROM tblRoomsBooking WHERE (((tblRoomsBooking.BookStartDate)<=Date())) ORDER BY tblRoomsBooking.BookLocation, tblRoomsBooking.BookStartDate;
Comment