Intan Nur Shafienaz
Intan Nur Shafienaz

Reputation: 69

Crystal Report : Suppress certain section on the next page while printing

I'm having problem to hide other section on the next page, what should I do if the highlight data above need to be hide/suppress on the next page while printing but still display it on the first page only. Then, I also confuse what was the difference between hide and suppress as well.

enter image description here

**Sorry for incorrect spelling in photo : Highlight text should hide in the next page

Upvotes: 0

Views: 1821

Answers (1)

R. McMillan
R. McMillan

Reputation: 1422

Using the Section Expert you will want to use a formula in the "Suppress" property for the section or sections that print the highlighted text in your report. The formula should be:

PageNumber > 1;

When writing a formula for a Suppress property the formula should always be an expression that evaluates to True or False. When the expression is True the object will be suppressed.

Upvotes: 2

Related Questions