I'm writing a report that has date criteria and two parameters that the user enters in a begin and end date. I want the results on the report to display all records that fall within that date range, INCLUDING the dates that are entered.
When selecting the "Between" option in the select expert I get the following:
Where {?BeginDate} = 11/1/09
and {?EndDate} = 1/22/10
The problem with this is it does not give me the records that exist with a phs_d = 1/22/10
I tried editing the formula myself and changing it so the it reads:
Yet it reverts back to the "in" clause like first entered. How can I used a greater than or equal to select expert statement to compare dates?
When selecting the "Between" option in the select expert I get the following:
Code:
{phs.phs_d} in {?BeginDate} to {?EndDate}
Where {?BeginDate} = 11/1/09
and {?EndDate} = 1/22/10
The problem with this is it does not give me the records that exist with a phs_d = 1/22/10
I tried editing the formula myself and changing it so the it reads:
Code:
{phs.phs_d} >= {?BeginDate} and {phs.phs_d} <= {?EndDate}
Yet it reverts back to the "in" clause like first entered. How can I used a greater than or equal to select expert statement to compare dates?