Report header/page header question

  • Thread starter Thread starter mscertified
  • Start date Start date
M

mscertified

I need to include the report title at the top of every page. On the first
page only I need to include some additional heading information under the
title. How do I do this? It seems no combination of report header and page
header can achieve it.

Thanks.
 
You can add a text box to the Page Header section like:
=IIf([Page]=1,"some additional heading information",Null)
This should only display on the first page.
 
Back
Top