Saturday, April 11, 2009

How to Manage Two Headers in crystal Report

The given method can explain the process of crystal report with two headers.
the first header can contain the company details and seond page can contain the item details.
the company details must be show in first page and item details header shown from 2nd page.

create two page headers in crystal report.

In page header(a) you drag company name details.
In pageheader(b) you drag item details.

go to page header(a) section expert, select suppress selection formula and write the following code


if(pagenumber<>1) then
true
else
false


go to page header(b) section expert, select suppress selection formula and write the following code


if(pagenumber=1) then
true
else
false

Labels:

0 Comments:

Post a Comment

Subscribe to Post Comments [Atom]

<< Home