views:

35

answers:

2
+1  Q: 

Crystal report

In Crystal report how we suppress page header on pagenumber >= 2 when records are completed on the previous page

+1  A: 

Maybe this will help? Just make a couple headers and a conditional that hides on the non-first page...

John Weldon
+2  A: 

Go to the Section Expert of the header. Suppress it with the checkbox and then, in the suppression formula, do this (with Basic syntax):

if pagenumber > 1 then formula = true

MarkB