Subform

Moses76

Registered User.
Local time
, 21:11
Joined
May 25, 2011
Messages
49
I have a subform on a main form. Subform is used for data entry into a transaction table.

Subform has a textbox that does dlookup on an ID field from another query. It works fine when I open up the subform on its own. When I open the main form and select the name based on which it is supposed to the lookup it does not populate the textbox. All data except the data from the textbox gets entered into the table. Any ideas ?

Moses
 
When you are dealing with a subform, the syntax for referring to controls and fields on it changes slightly from that which you would use for controls and fields on a form.

Bookmark this link for future reference, as it shows the correct syntax for referring to subforms, their controls and properties from various relative locations.
 
I actually tried this link but could not figure it out on my own . Here is a screen shot since I am not sure if I am referring to the correct objects.
 

Attachments

  • screen shot.JPG
    screen shot.JPG
    49.4 KB · Views: 67
Also this is what I have.

=DLookUp("[ID]","[First and Last Name Combined]","[Composite]='" & [Forms]![Child54].[Absence_Transaction].[Name] & "'")
 
Name of the main form is Agenda
Name of the subform container is Child54
Name of autoform that it contains is Absence_Transaction . Control on Absence_Transaction is Name(combo box)
 

Users who are viewing this thread

Back
Top Bottom