Link to home
Start Free TrialLog in
Avatar of spoowiz
spoowizFlag for United States of America

asked on

Cannot do "insert summary" on a formula field.

I have this formula which is in the detail. Values of either 0 or 1 displays correctly.
However, when I right-click on it, it does not show "insert summary" option.
Does this have to do with "evaluateafter" or using global variable?
How can a do a summary (count of)?
thanks

problem formula:
-----------------------------
WhilePrintingRecords;
EvaluateAfter({@G});
global stringvar YM1;
global stringvar LYM;
if YM1 = LYM then 1 else 0;

A simple formula, such as, has no problem showing the "insert summary" option.
----------------------------
if {listing.Status} = 'p' then 1 else 0
ASKER CERTIFIED SOLUTION
Avatar of Mike McCracken
Mike McCracken

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Mike McCracken
Mike McCracken

Glad i could help

mlmcc