Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Suppress Page Footer on Specific Group Footer in Crystal 10

Status
Not open for further replies.

pamelarj

Programmer
Sep 8, 2005
14
US
I have a report referred to as an explanation of benefits (EOB).

The report has two groups: member Name (@MemberSort) which is GH1 and Claim Totals (@ClaimTot) which is GH2. The Orientation of the Report is Landscape. GH1 has footers a-d.

Because this is a Medicare Report specific document numbers are required (by the gov't) to print at the bottom of each page. I've placed the document number of the EOB in the page footer.

There's also an insert that must be supplied to each member (after the EOB pages are complete). I've added a the insert (which is a series of text objects that I've rotated 90 degrees as it must print portrait) to the GH1-d footer. Since the Insert has its own document number I don't want the EOB's document number (currently in the Page footer) to appear on the GH1-d footer. How do I make this not happen?
 
In GH1-d palce the following formula:

whileprintingrecords;
Booleanvar SuppressMe:=True

Right click the page gooter and select Section Expert->X 2 next to suppress and place:

whileprintingrecords;
Booleanvar SuppressMe

In GH1 place a formula containing:

whileprintingrecords;
Booleanvar SuppressMe:=False

-k
 
Thanks K,
However I still have a few questions:

(1) you mentioned to place a formula in GH-1. Where do I place it?

(2) What are those formulaes doing?

(3)I purchased a book, 'The Complete Reference Crystal Reports 10' that only touches a little on creating formulas. Where can I obtain study material on formulas like the one you're supplying here?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top