My issue from yesterday has been resolved; however, this issue is with the same report, just a different field.
I am attempting to perform this summary with the 3 formula fields method.
Formula 1
whileprintingrecords;
numbervar qtyord;
qtyord := 0
Formula 2
whileprintingrecords;
numbervar qtyord;
qtyord := qtyord + Sum ({F4211.SDUORG}, {F4102.IBPRP7})
Formula 3
whileprintingrecords;
numbervar qtyord;
qtyord
My suppression is based on another formula, {@Need for Orders and Max Packaging} that is comprised of another formula, that is why I cant simply select this field using the select expert and say {@Need for Orders and Max Packaging} > 0.
The only reason I am even attempting to use the 3 formula method on this Qty Ordered field is because of the suppression that I have for {@Need for Orders and Max Packaging}. I am suppressing any records in the Group #2 Header {@Need for Orders and Max Packaging} <= 0, and I am now attempting to sum the displayed records for the Qty Ordered field only.
Thanks again.