Xprogrammer
Programmer
Using Crystal 8, I have a report with 2 detail sections. The sections are conditionally suppressed as a function of flag from a column in the backend. E.g Records A,C,E will use detail A. Records B,D,F will use detail B.
I created a formula the gives the number of records printed out
@position
shared numbervar counter1;
counter1:=counter1 + 1
i have inserted this formula in both detail sections. Instead of the output to be incremented by 1 across he report (as in 1,2,3,4,5,6), I get 1,1,2,2,3,3. What gives?
I created a formula the gives the number of records printed out
@position
shared numbervar counter1;
counter1:=counter1 + 1
i have inserted this formula in both detail sections. Instead of the output to be incremented by 1 across he report (as in 1,2,3,4,5,6), I get 1,1,2,2,3,3. What gives?