DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Private Sub ComboBox2_Change()
If Trim(ComboBox2.Value) = "" Then: ListeGuncelle1: Exit Sub
Set sh1 = Sheets("DATA")
ara = ComboBox2.Value
ListView3.ListItems.Clear
For sat = 1 To sh1.Cells(65536, 1).End(xlUp).Row
If sh1.Cells(sat, "g") = ara Then
With ListView3
.ListItems.Add , , sh1.Cells(sat, 1)
X = X + 1
With .ListItems(X).ListSubItems
.Add , , sh1.Cells(sat, 2)
.Add , , sh1.Cells(sat, 3)
.Add , , sh1.Cells(sat, 6)
.Add , , sh1.Cells(sat, 7)
.Add , , sh1.Cells(sat, 8)
.Add , , sh1.Cells(sat, 9)
.Add , , sh1.Cells(sat, 10)
.Add , , sh1.Cells(sat, 11)
.Add , , sat
End With
End With
End If
Next
End Sub