hello i need help about link two combobox with lable when i choose combobox1 and combobox 2 it supposes showing this sudia-jedah but it shows this sudia-
Private Sub ComboBox1_Change()
Select Case ComboBox1.Text
Case "eygept"
ComboBox2.RowSource = Range("M3:M" & Cells(Rows.Count, "M").End(xlUp).Row).Address
Case "sudia"
ComboBox2.RowSource = Range("n3:n" & Cells(Rows.Count, "n").End(xlUp).Row).Address
End Select
End Sub
Private Sub ComboBox2_Change()
Label2.Caption = ComboBox2.Text & " - " & ComboBox1.Text
End Sub
Private Sub UserForm_Initialize()
ComboBox1.List = Array("sudia", "eygept")
End Sub