When a user selects the "No" choice in a pulldown list while entering info into the main form, I want it to trigger the opening of a subform for the user to enter detailed data. Is there a way to do this? thanks! Jon
conditional display of subform
Collapse
X
-
If me.YourChoicePu lldownName.valu e = "No" then
docmd.openform "YourFormNa me"
else
'In case you have some condition if Yes
end if
Your saying its a subform, so subform is attached to a form and always open. I assumed your subform is another form.
HTH,
George
Originally posted by JCemcityWhen a user selects the "No" choice in a pulldown list while entering info into the main form, I want it to trigger the opening of a subform for the user to enter detailed data. Is there a way to do this? thanks! Jon
Comment