Link to home
Start Free TrialLog in
Avatar of kgittinger
kgittingerFlag for United States of America

asked on

Can a page header field header be suppressed based on whether the detail of that field is suppressed?

Can a page header field header be suppressed based on whether the detail of that field is suppressed?  I would like to suppress the dept title in the page header if the dept detail is suppressed in the report detail.  I have successfully suppressed the page header using the following:

if pagenumber = 1 then yes else
If OnFirstRecord or {CrystalReport.plan_name} <> Previous ({CrystalReport.plan_name}) then
    True
Else
    False

but if I add
if {CrystalReport.employer_name} = "Staples" then yes  above the False line I am unable to supress that page header title
ASKER CERTIFIED SOLUTION
Avatar of Mike McCracken
Mike McCracken

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial