Hey all,
Sorry for what is probably an easy question, but I've looked over as many Dlookup example and threads in this forum as any sane person could and still can't figure out my issue.
Breakdown:
Table: tblISRregion
Fields: Region, Manager
Form: frmISRregion (drop-down that pulls Region values from tblISRregion)
Form: frmManager
(Both inside SampleDraftReq form)
All I would like the frmManager form to do is to pull the corresponding Manager value from tblISRregion table in regards to what Region choice is chosen in frmISRregion.
For example, if Bob is the Manager of the Central Region, whenever someone selects the Central Region in frmISRregion, Bob's name will automatically fill in frmManager form. Here is my Dlookup code below used in my Control Source, as it just gives me a looping #Error. Any help would be greatly appreciated!
Sorry for what is probably an easy question, but I've looked over as many Dlookup example and threads in this forum as any sane person could and still can't figure out my issue.
Breakdown:
Table: tblISRregion
Fields: Region, Manager
Form: frmISRregion (drop-down that pulls Region values from tblISRregion)
Form: frmManager
(Both inside SampleDraftReq form)
All I would like the frmManager form to do is to pull the corresponding Manager value from tblISRregion table in regards to what Region choice is chosen in frmISRregion.
For example, if Bob is the Manager of the Central Region, whenever someone selects the Central Region in frmISRregion, Bob's name will automatically fill in frmManager form. Here is my Dlookup code below used in my Control Source, as it just gives me a looping #Error. Any help would be greatly appreciated!
Code:
=DLookUp("[Manager]","tblISRregion","[Region] =" & [Forms]![SampleDraftReq]![frmISRregion])