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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Suppressing Group Footer

Status
Not open for further replies.

nijeesh

Programmer
Sep 12, 2002
12
0
0
US
Hi All,
I want to suppress the Group Footer if it appears at the starting of a new page. Is there any facility available in Crystal Reports to do this?
I'm using Crystal Rpts 8.5

Cheers,
Nijeesh.
 
The following should suppress the GF if no details appear on that page. You could use anohter section if you don't display the details.

Place this formula in the page header:
WhilePrintingRecords;
BooleanVar Top:= True

Place this formula in the details:
WhilePrintingRecords;
BooleanVar Top:= False

Then suppress the GF with the following formula:
WhilePrintingRecords;
BooleanVar Top
Ken Hamady, On-site Custom Crystal Reports Training & Consulting
Public classes and individual training.
Expert's Guide to Formulas / Guide to Crystal in VB
- tek@kenhamady.com
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top