Per fare quello solo quello che chiedi devi scrivere

codice:
Private Sub Combo1_Click()
   Dim Utenti As Long
   Utenti = Combo1.ListIndex
   Fascia1.AddItem Utenti
End Sub
ma basta anche

codice:
Private Sub Combo1_Click()
   Fascia1.AddItem Combo1.ListIndex
End Sub