Good afternoon, I'm having trouble filtering a report based on [Appointment Date] between StartDate and EndDate. Start Date appears to work as I expect
So I thought I'd try to break down the process into steps:
Now this produces a variable that displays the correct day and year of [Appointment Date] but all the months are "01", e.g. 10/04/2015 becomes 10/01/2015 and 23/07/2015 becomes 23/01/2015.
I'm rather frustrated. Any ideas please?
Many thanks,
D€$
but EndDate does not and returns nothing=If [Appointment Date] >= ToDate( "01/01/2015";"dd/mm/yyyy") Then 1
=If [Appointment Date] <= ToDate( "31/12/2015";"dd/mm/yyyy") Then 1
So I thought I'd try to break down the process into steps:
MyToDate
=ToDate( [Appointment Date];"dd/mm/yyyy")
Now this produces a variable that displays the correct day and year of [Appointment Date] but all the months are "01", e.g. 10/04/2015 becomes 10/01/2015 and 23/07/2015 becomes 23/01/2015.
I'm rather frustrated. Any ideas please?
Many thanks,
D€$