Report Titles

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How can I get a report to have the title of a field in my form? I have a
command button which when pressed brings up a report revelent only to the
record the form is currently viewing. At the monent the title reads "Current
Method" but I would much prefer it to read tha title that Method has on the
form.

Any Ideas?
 
You can change the title to a textbox with a control source of something
like
="Report for " & Me!SomeField & " Method"
This assumes that the 'method' is included on the report. If not you can
change the reference to the form...
="Report for " & Forms!SomeForm!SomeField & " Method"
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top