Report design question

mergle

Registered User.
Local time
Today, 10:54
Joined
Jan 31, 2003
Messages
54
I have a query that is the record source for a report...

Is it possible for a textbox on the report to reference a field that is not part of the record source?

If so, how exactly do I create the reference?

Thanks for any help!
 
Use a DLookUp function for that.

In the textbox's controlsource type:

=DLookUp("[FieldName]","[TableName]",Where Clause)

The where clause is optional. If you don't enter it the function will return the first record in the table.
 
Thank you much Rob.Mills...I'll give it a try
 

Users who are viewing this thread

Back
Top Bottom