BlurredVision
Technical User
I have the following formula within my report header:
"Date: " & date(Minimum ({DT1.Date})) & ' to ' & date(Maximum ({DT1.Date})) & chr(013) &
"Generated: " & currentdatetime;
My issue is, the min / max values being displayed are incorrect. I use a boolean formula to select data
Example:
{@Select_Date} and
{DT1.ContraAct} startswith "C"
If I select my data in this manner the min / max date is returned has 6/21 - 6/22
If I select date based on the following statement:
{DT1.Date} in Lastfullweek
The min / max value are returned properly.
Any ideas why crystal feels the need to ignore the min / max values when I select on a true/false formula?
Many thanks..
"Date: " & date(Minimum ({DT1.Date})) & ' to ' & date(Maximum ({DT1.Date})) & chr(013) &
"Generated: " & currentdatetime;
My issue is, the min / max values being displayed are incorrect. I use a boolean formula to select data
Example:
{@Select_Date} and
{DT1.ContraAct} startswith "C"
If I select my data in this manner the min / max date is returned has 6/21 - 6/22
If I select date based on the following statement:
{DT1.Date} in Lastfullweek
The min / max value are returned properly.
Any ideas why crystal feels the need to ignore the min / max values when I select on a true/false formula?
Many thanks..