Hi Everyone,
I am developing a CRM report using Crystal Reports 10 & Multiple SQL Databases. The entirety of the report is driven by a Customer Number Parameter field: {?CIF_Number}. This field is set to accept discrete values only, but also multiple discrete values.
The report successfully runs on one Customer, but when I run it on multiple customers, the Shared Variables set to true on customer #1 remain as true on Customer #2. I have tried placing Formula Fields in the Group #1 Header (Customer #) Footer as well as in the Group #1a (above the subreports where the variables are set). And I can't get these Booleans to reset after each customer.
Same Code As Follows:
In Subreport (Group Header #1b):
In Main Report (Group Header #1t):
In Main Report (Group Header #1a):
Any Suggestions Would Be greatly Appreciated.
Thanks,
Mike
"It Seems All My Problems Exist Between Keyboard and Chair"
I am developing a CRM report using Crystal Reports 10 & Multiple SQL Databases. The entirety of the report is driven by a Customer Number Parameter field: {?CIF_Number}. This field is set to accept discrete values only, but also multiple discrete values.
The report successfully runs on one Customer, but when I run it on multiple customers, the Shared Variables set to true on customer #1 remain as true on Customer #2. I have tried placing Formula Fields in the Group #1 Header (Customer #) Footer as well as in the Group #1a (above the subreports where the variables are set). And I can't get these Booleans to reset after each customer.
Same Code As Follows:
In Subreport (Group Header #1b):
Code:
shared BooleanVar ChequingHeld;
IF ChequingHeld=FALSE THEN
(
IF Sum ({@PROD_Count_Chq}) > 0 THEN
(
ChequingHeld:=TRUE
)
)
In Main Report (Group Header #1t):
Code:
whileprintingrecords;
shared BooleanVar ChequingHeld;
IF ChequingHeld=TRUE THEN "Y" ELSE "N"
In Main Report (Group Header #1a):
Code:
WhilePrintingRecords;
BooleanVar ChequingHeld:=False;
Any Suggestions Would Be greatly Appreciated.
Thanks,
Mike
![[banghead] [banghead] [banghead]](/data/assets/smilies/banghead.gif)