Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

common field displayed on all forms

Status
Not open for further replies.
Nov 17, 2003
105
GB
I need a common numeric field (nest number)on all forms that print through a macro.I have tried to insert the properties on every report
Code:
[table]![cutting list number]![nest number]
This does not work so i tried
Code:
table.cutting list number.nest number
No joy!
Any advice appreciated.
TIA
Cliff
 
Are you actually printing forms rather than reports? Consider always printing reports. I would create a small subreport that displays the value and add this subreport as necessary to other reports.

Duane
MS Access MVP
Find out how to get great answers faq219-2884.
 
Duane,
Forms? It's late and i have spent all flippin day on this!!!
Reports, i mean reports. what a twit.
Cliff
 
Cliff,
Did you try my suggestion? Did it work? You could probably also use a text box bound to:
=DLookup("[nest number]","[cutting list number]")
This assumes there is only one record in the table and it is the value you want to display.

Duane
MS Access MVP
Find out how to get great answers faq219-2884.
 
Duane,
I will try the second data
=DLookup("[nest number]","[cutting list number]")
i was not sure whether the first lot would work as i am working on reports... will get back asap
Ta Cliff
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top