I got 3 groups in my crystal report with few records with 1 field name QtyOrdered
How do I calculate number of records with QtyOrdered= 0 and show it in the end of each group
I written out the formula as:
Numbervar Zero;
if {StockOnHandOrderPlaced.QtyOrdered} = 0 then
(Zero:=Zero+1)
It calculating all records which is not according to groups, how do i change the formula so it can calculate group's record?