Mostar Combobox con celdas filtradas
Les cuento que soy nuevo en crear formularios y tengo el siguiente problema.
Tengo una hoja excel con datos 1 al 300 del cual realizo un filtro (columna F) y después de eso solo muestra 10 pero al ejecutar el formulario y listar el combobox1 del cual me muestra los datos de la celda C3 me sigue mostrando los 300 datos y no los 10 del filtro.
¿Qué debo realizar para que muestre solo los datos filtrados?
Tengo el siguiente código:
----------------------------------------------------------------
Private Sub ComboBox1_Change()
 If Not ComboBox1.ListIndex = -1 Then
 TextBox1 = ComboBox1.List(ComboBox1.ListIndex, 1)
 TextBox3 = ComboBox1.List(ComboBox1.ListIndex, 3)
 TextBox4 = ComboBox1.List(ComboBox1.ListIndex, 4)
 TextBox5 = ComboBox1.List(ComboBox1.ListIndex, 5)
 TextBox6 = ComboBox1.List(ComboBox1.ListIndex, 6)
 TextBox7 = ComboBox1.List(ComboBox1.ListIndex, 7)
 TextBox8 = ComboBox1.List(ComboBox1.ListIndex, 8)
 TextBox9 = ComboBox1.List(ComboBox1.ListIndex, 9 + 2)
 TextBox10 = ComboBox1.List(ComboBox1.ListIndex, 10)
 TextBox11 = ComboBox1.List(ComboBox1.ListIndex, 11 + 1)
 TextBox12 = ComboBox1.List(ComboBox1.ListIndex, 12 + 1)
 TextBox13 = ComboBox1.List(ComboBox1.ListIndex, 13 + 4)
 Else
 TextBox1 = ""
 TextBox3 = ""
 TextBox4 = ""
 TextBox5 = ""
 TextBox6 = ""
 TextBox7 = ""
 TextBox8 = ""
 TextBox9 = ""
 TextBox10 = ""
 TextBox11 = ""
 TextBox12 = ""
 TextBox13 = ""
 End If
End Sub
----------------------------------------------------------------
Private Sub UserForm_Initialize()
ComboBox1.RowSource = "'" & Hoja3.Name & "'!C3:T" & Hoja3.Range("C" & Rows.Count).End(xlUp).Row

        