Thanks for the help. I still cannot figure this out though. While my source
for the form is one table, is it possible to then have controls based off of
a separate table? For instance, let's say I base my form off of Event Info
table, and I want to add just a few controls to my form from a separate table
titled Store Info...After reading your response, I think this is the reason I
am getting the #Name? error. Is there a way to allow a form to be based off
of one table, while still using a second table to add a few controls?
Yes, but you need to use DLookUp.
If the name of the table this field is in is "tblMyTable" and the
field in that table is named "MyField" and the table has just the one
record, use:
=DLookUp("[MyField]","tblMyTable")
However, if the tblMyTable has many records, then you need to use a
Where clause to get the correct record.
Look up, in VBA help, DLookUp as well as
Where Clause + Restrict data to a subset of records.
Make sure you use an unbound control and that the name of this control
is not the same as the name of any field used in it's control source
expression, i.e. the name of this control must not be "MyField".