I have a query which returns the results between an appointment date and a results date. This query eliminates any results that are less than 24 hours by making them null. Thus, only showing results > 24 hours (or not null)
The query prompts the user to enter a start date (mm/dd/yyyy) and end date (mm/dd/yyyy).
This formula below is in the Report Footer:
=DCount("[Documents]![HX Documents]","Documents")
It returns the count of "HX Documents" from the table. This is what I want it to do, because it includes the Null values which are not included in the query because of my formula I described above: by assigning results < 24 hours as Null.
All I want to do is take that number I am getting already (from the formula), and eliminate all results which are not in the date range the user enters in the parameter when the report(query) opens.
The query prompts the user to enter a start date (mm/dd/yyyy) and end date (mm/dd/yyyy).
This formula below is in the Report Footer:
=DCount("[Documents]![HX Documents]","Documents")
It returns the count of "HX Documents" from the table. This is what I want it to do, because it includes the Null values which are not included in the query because of my formula I described above: by assigning results < 24 hours as Null.
All I want to do is take that number I am getting already (from the formula), and eliminate all results which are not in the date range the user enters in the parameter when the report(query) opens.