Automatically update labels

  • Thread starter Thread starter HilcrRWise
  • Start date Start date
H

HilcrRWise

I have a large number of reports that all have the same label caption.
This label will need to be changed at certain intervals. What I wan
to do is have a label setup on a form which when the caption is change
all the relevant labels on the reports will display the same info.

I have tried using the following expression on the labels in th
reports:

=[Forms]![Menu_frm]![Date_lbl].[Caption]

but this only works when the Menu_frm is open, when it is closed th
reports display #Name?

Is there an easy way to set it up so all the reports display the sam
captions as entered on the form without the form having to be accesse
first
 
Consider using a single subreport. Add the subreport on any other report.
You can bind the subreport to a table with a single record containing the
value you want to display.
 
Back
Top