Hi

Not sure what do you want.

To get the selected value, try

Code:
Private Sub ComboBox1_Change()
    
    Dim lngIndex    As Long
    
    With Me.ComboBox1
        lngIndex = .ListIndex
        If Not lngIndex = -1 Then
            MsgBox .List(lngIndex)
        End If
    End With
    
End Sub