Combo box depend on another value

  • Thread starter Thread starter Albert
  • Start date Start date
A

Albert

In continuous form, I want to create a bound combo box which value in list
is depend on another bound text box in the same record. Can we do that ?

Regards
 
You are likely to see some weird behaviours if you hide the bound Column of
the ComboBox since what you see is many instances of the same ComboBox
Control and these instances share the SAME RowSource while you probably need
different RowSources for each instance of the ComboBox.

See the Microsoft Knowledge Base article:

http://support.microsoft.com/?id=208866
for more info.
 
Back
Top