I removed the rowsource reference for Arrangement (i.e.) Combobox4 and I made the drop down list of Combobox4 to get updated via coding.
The combobox4 will get updated based on the selection change of Combobox3
Here is the combobox3 change code.
Private Sub ComboBox3_Change()
Dim rMyRng As Range, r As Range
Set rMyRng = Sheets("BanquetDB").Range("I2:I10")
ComboBox4.Clear
For Each r In rMyRng
If UCase(r.Value) = UCase(ComboBox3.Value) Then
ComboBox4.AddItem r.Offset(, 1).Value
End If
Next r
End Sub
Refer the attached file for details.
Please do it for the rest of the combobox based on the above method/logic
Bookmarks