I am trying to do a query on all incidents that aren't closed. When an incident is open, it is assigned a closure date of 12-31-1840 (don't ask me why it isn't left null). I have a selection criteria that looks like this:
{incident_data_all.date_inc_closed} = Date (1840, 12, 31) and
{incident_data_addendum.Data_Entry_Date} >= {?Start Date} and
{incident_data_addendum.Data_Entry_Date} <= {?End Date}.
The problem is that its not returning any data (and I am sure that there are data there to return - when I run the same report without the "closed" criteria, I get results that would fit the original selection criteria). Any ideas as to why?
{incident_data_all.date_inc_closed} = Date (1840, 12, 31) and
{incident_data_addendum.Data_Entry_Date} >= {?Start Date} and
{incident_data_addendum.Data_Entry_Date} <= {?End Date}.
The problem is that its not returning any data (and I am sure that there are data there to return - when I run the same report without the "closed" criteria, I get results that would fit the original selection criteria). Any ideas as to why?