I have a condition from a query that i would like to apply to a raw data table using a macro. The condition within the query for a date field is
Between ([forms]![RADScreen]![StartDate]) And ([forms]![RADScreen]![EndDate])
I even copied the SQL for that particular field and tried pasting it into the where condition for 'ApplyFilter', but the results are not filtered between the selected dates from the form.
SQL:
(([ALL SAMPLE DATA].BOOKDATE) Between ([forms]![RADScreen]![StartDate]) And ([forms]![RADScreen]![EndDate]))
Any ideas what i may be doing wrong and how to go around this?