Different title on the page header

  • Thread starter Thread starter Harp
  • Start date Start date
H

Harp

Hi all,

I have created one report and using a couple of different
filter to show different information. eg All orders,
orders delayed and orders pending. I am using a option
group on a form to select which lot data I want to see.
This is working.

My problem is I want to change the title in the Page
Header of the report for each different selection to say
what the report is showing. What would be the best way to
this.

Thanks for you help
 
Harp said:
I have created one report and using a couple of different
filter to show different information. eg All orders,
orders delayed and orders pending. I am using a option
group on a form to select which lot data I want to see.
This is working.

My problem is I want to change the title in the Page
Header of the report for each different selection to say
what the report is showing. What would be the best way to
this.

I think you should use an invisible(?) text box on the form
so the code that determines the report's where condition can
store the appropriate title's text. Then a text box in the
report's page header can use an expression like:
=Forms!theformname.thetextboxname
to display the title.
 
Back
Top