I am using CR8 and am having problems in conditioning the currency symbol for groups.
Group1 = Sales Category
Group2 = Ship Date
Group3 = Order Number
I need to print the $ symbol for the 1st Order Number of the Sales Category (skipping group 2 here completely). For example:
Category Date Order# Amount
A 1/1/13 1 $ 2
1/8/13 5 1
B 1/2/13 3 $ 4
1/2/13 4 6
Also need to print the $ at the top of the succeeding pages.
Created 2 formulas :
Grp3Cnt: whileprintingrecords;
numbervar Grp3Cnt := Grp3Cnt + 1;
ResetGrp3Cnt: whileprintingrecords;
numbervar Grp3Cnt :=0;
Grp3Cnt is in GF3
ResetGrp3Cnt is in PF
Enable Currency Symbol: whileprintingrecords;
numbervar Grp3Cnt;
if Grp3Cnt =1 then crFixedCurrencySymbol
else crNoCurrencySymbol;
One Symbol Per Page: box is checked
The only place where the Currency Symbol appears is on the 3rd page of the report and nowhere else. What am I doing wrong?
Group1 = Sales Category
Group2 = Ship Date
Group3 = Order Number
I need to print the $ symbol for the 1st Order Number of the Sales Category (skipping group 2 here completely). For example:
Category Date Order# Amount
A 1/1/13 1 $ 2
1/8/13 5 1
B 1/2/13 3 $ 4
1/2/13 4 6
Also need to print the $ at the top of the succeeding pages.
Created 2 formulas :
Grp3Cnt: whileprintingrecords;
numbervar Grp3Cnt := Grp3Cnt + 1;
ResetGrp3Cnt: whileprintingrecords;
numbervar Grp3Cnt :=0;
Grp3Cnt is in GF3
ResetGrp3Cnt is in PF
Enable Currency Symbol: whileprintingrecords;
numbervar Grp3Cnt;
if Grp3Cnt =1 then crFixedCurrencySymbol
else crNoCurrencySymbol;
One Symbol Per Page: box is checked
The only place where the Currency Symbol appears is on the 3rd page of the report and nowhere else. What am I doing wrong?