JamesDSM50328
Technical User
Hi, I have a unbound form that has multiple comboboxes that when selected sets another combobox with it's options, 1 combobox after the rowsource is updated does not have all of the information in the next combobox. This is only happening to a select few. The linked tables on reflect all of the data.
Any Suggestions?
Any Suggestions?
Code:
Private Sub cboAttr1_AfterUpdate()
On Error Resume Next
Select Case cboAttr1.Value
Case "Mktg Pgm Group"
cboValue1.RowSource "dbo_market_program_group_ref"
cboValue1.ColumnCount = 1
End Select
End Sub