I have a report with a simple Record Selection Formula that I want to control via a Parameter {?HideDowns}.
This Selection formula works fine where the report will filter out 'xxx' (depending on parameter ?HideDowns) but am finding formulas and summaries do not update accordingly. Results for Formulas and summaries remain the same.
I've tried the different Evaluation Time functions, BeforeReadingRecords,
WhileReadingRecords, WhilePrintingRecords but get 'The formula cannot be evaluated at the time specified'.
Putting the above formula as a Group Selection has no affect. TrackID 'xxx' is not filtered out.
How do you force formulas and summaries to update in this situation?
Thanks
Jim
Code:
IF {?HideDowns} THEN
if {uspSELECT;1.TrackID} <> "xxx" then TRUE else FALSE
ELSE
true;
This Selection formula works fine where the report will filter out 'xxx' (depending on parameter ?HideDowns) but am finding formulas and summaries do not update accordingly. Results for Formulas and summaries remain the same.
I've tried the different Evaluation Time functions, BeforeReadingRecords,
WhileReadingRecords, WhilePrintingRecords but get 'The formula cannot be evaluated at the time specified'.
Putting the above formula as a Group Selection has no affect. TrackID 'xxx' is not filtered out.
How do you force formulas and summaries to update in this situation?
Thanks
Jim