>I am trying to insert a field from a table, however I do not have that
>table
[quoted text clipped - 6 lines]
>
> Any suggestions? Thanks!
Add an unbound textbox control to the form and populate it with DLookUp in
the Form_Current event:
textfield = Nz(DLookUp("[field]","[table]","criteria"),"")
Nz is needed in case the field is empty; you can't assign a Null value to a
textbox control. Be sure to use your own control, field, and table names.
Carl Rapson