Hi ExForum User's!

I have 3 combobox:
Combobox5
Combobox6
Combobox10

I need when put "Calidad" & "MCC" --> Give me "X information"
When I put "Calidad " & "SwitchGear" --> Give me "Y Information"
When I put "Produccion" & "MCC" -->give me "z Information"
------

I need what it's the command to add to create the cascading option:
I have this code:

UseForm_Initialize
Private Sub UserForm_Initialize()

  With Me.ComboBox10
         .AddItem "Calidad"
         .AddItem "Producción"
                  
     End With
 
 With Me.ComboBox6
         .AddItem "MCC"
         .AddItem "SwitchGear"
         
     End With


End Sub

And in the combobox:

Private Sub ComboBox6_Change()
Me.ComboBox5.Clear
 
    Select Case Me.ComboBox6.Value
    
         Case "MCC"
             With Me.ComboBox5
                 .AddItem "Inspección Recibo"
                 .AddItem "Inspección Proceso"
                 .AddItem "Pruebas"
                 
             End With
        
          Case "SwitchGear"
             With Me.ComboBox5
                 .AddItem "Inspección Recibo"
                 .AddItem "Inspección Proceso"
                 .AddItem "Pruebas"
                 
             End With
             

             
        End Select
             
End Sub
Best Regards!!