Default value in combo box = value of another combo box?

  • Thread starter Thread starter Geordie
  • Start date Start date
G

Geordie

How do I get the value of one combo box to be the default
value in another combo box? in this instance, I want the
value of cboAsgEngID to be the default value for
cboSteEngID.

I have tried putting the following into Default Value of
cboSteEngID without success:
[me].[cboAsgEngID].[Value]
and
=[cboAsgEngID]

BTW, the two combos are on different tab control pages.

Thanks.
 
Because they are on different pages, my guess would be
that you need to reference the page name instead of
using "me". i.e [PageName].[cboAsgEngID].[Value]

At least that's what I would try... Good luck.
 
Back
Top