- Katılım
- 26 Eylül 2020
- Mesajlar
- 171
- Excel Vers. ve Dili
- excel 2019 pro.Türkçe
- Altın Üyelik Bitiş Tarihi
- 26-09-2021
Aşağıdaki kod ile Yapmaya çalıştım ama başaramadım.Yapmak istediğim E sütununda tekrarlayan muhtelif isimler var Comboboxdan seçtiğim isme ait verileri Listview1' de listelemek istiyorum.Örnekte listview 1.sütuna yazdırmaya çalıştım.Toplam sütun sayısı 5 olacak.Sonradan düzenlenebilir önemli değil.İlgilenecek arkadaşa teşekkürler.
On Error Resume Next
With ListView1
ListView1.ListItems.Clear
Set S1 = Sheets("Tahsilat")
Say = S1.Range("E65536").End(xlUp).Row
For j = 1 To Say
If CStr(S1.Cells(j, "e")) = CStr(ComboBox1) Then
i = ListView1.ListItems.Count + 1
.ListItems.Add , , S1.Cells(j, "e")
.ListItems(i).SubItems(1) = Sheets("Tahsilat").Cells(i, 5).Value
End If
Next j
End With
On Error Resume Next
With ListView1
ListView1.ListItems.Clear
Set S1 = Sheets("Tahsilat")
Say = S1.Range("E65536").End(xlUp).Row
For j = 1 To Say
If CStr(S1.Cells(j, "e")) = CStr(ComboBox1) Then
i = ListView1.ListItems.Count + 1
.ListItems.Add , , S1.Cells(j, "e")
.ListItems(i).SubItems(1) = Sheets("Tahsilat").Cells(i, 5).Value
End If
Next j
End With