frankyberry
Programmer
Using CR v8.0.
On the main report I have a database field GROSS_QTY that contains a value. This main report also contains a subreport.
I would like to link this subreport to a running total variable off this GROSS_QTY value.
I also will group off this variable in the subreport
i.e if GROSS_QTY = 100, I want to have 100 different detail sections....
Here is what I have:
thanks!
On the main report I have a database field GROSS_QTY that contains a value. This main report also contains a subreport.
I would like to link this subreport to a running total variable off this GROSS_QTY value.
I also will group off this variable in the subreport
i.e if GROSS_QTY = 100, I want to have 100 different detail sections....
Here is what I have:
Code:
Shared NumberVar Cnt;
while Cnt < {VW_QTY.GROSS_QTY} do
Cnt := Cnt + 1;
Cnt
thanks!