Greetings,
I created four formulas in hopes of being able to use them in an Alert!. I placed the formulas in the sections of the report as shown below. Why am I not able to see the formulas when attempting to construct an Alert?
GROUP HEADER 3
@Formula Reset
WhilePrintingRecords;
Global NumberVar := clientunits = 0;
DETAILS
@GF1a - Total Lines
if {ORDRDET.LINENUMBER} > 1
then 1
else 0
DETAILS
@GF1A - Manual Running Total
WhilePrintingRecords;
Global NumberVar clientlines := clientlines + {@GF1a - Total Lines};
REPORT FOOTER 3
@GF1A - Grand Total
WhilePrintingRecords;
Global NumberVar clientlines;
I created four formulas in hopes of being able to use them in an Alert!. I placed the formulas in the sections of the report as shown below. Why am I not able to see the formulas when attempting to construct an Alert?
GROUP HEADER 3
@Formula Reset
WhilePrintingRecords;
Global NumberVar := clientunits = 0;
DETAILS
@GF1a - Total Lines
if {ORDRDET.LINENUMBER} > 1
then 1
else 0
DETAILS
@GF1A - Manual Running Total
WhilePrintingRecords;
Global NumberVar clientlines := clientlines + {@GF1a - Total Lines};
REPORT FOOTER 3
@GF1A - Grand Total
WhilePrintingRecords;
Global NumberVar clientlines;