Header problem

  • Thread starter Thread starter ANSWER
  • Start date Start date
A

ANSWER

I have report. In header of this report I want to input data from table.
Because data in report header has to be
changed occasionally and he can change data in that table although he use
mde database.

How can I do this or is there some other suggestions.
 
Use DLookup() in the ControlSource of a text box on your report, e.g.:
=DLookup("NameOfYourFieldHere", "NameOfYourTableHere")
 
Back
Top