Wow! typing that heading is more complicated that solving the problem!
I have a main for that contains a number of tabs (let’s call the form “frm_MainForm”). The tab is called “tab_MyTab” (but this doesn’t really matter – see below!).
One one of those tabs contains another form (let’s call it “frm_FormOnTab”).
This form then contains a subform (let’s call this one “frm_subformOnForm”) which in turn contains a control for which I want to retrieve the value (let’s call the control “txt_MyControl”).
So, to summarise, we have:
frm_MainForm
tab_MyTab
frm_FormOnTab
frm_subformOnForm
txt_MyControl
How do we reference the value contained in txt_MyControl?
The syntax is:
=[Forms]![frm_MainForm]![frm_FormOnTab]![frm_subformOnForm].[Form]![txt_MyControl]

