sukruyilmaz1
Altın Üye
- Katılım
- 19 Haziran 2008
- Mesajlar
- 301
- Excel Vers. ve Dili
- Office 365
If Sheets("sayfa1").Cells(65536, "B").End(xlUp).Row < 2 Then Exit Sub
list = Sheets("sayfa1").Range("A8:I" & Sheets("sayfa1").Cells(65536, "A").End(xlUp).Row).Value
For i = 1 To UBound(list, 1)
With ListView1
.ListItems.Add , , list(i, 1)
s = s + 1
.ListItems(s).ListSubItems.Add , , list(i, 2)
.ListItems(s).ListSubItems.Add , , list(i, 3)
.ListItems(s).ListSubItems.Add , , list(i, 4)
.ListItems(s).ListSubItems.Add , , list(i, 5)
.ListItems(s).ListSubItems.Add , , list(i, 6)
.ListItems(s).ListSubItems.Add , , list(i, 7)
.ListItems(s).ListSubItems.Add , , list(i, 8)
.ListItems(s).ListSubItems.Add , , list(i, 9)
End With
Next i
list = Sheets("sayfa1").Range("A8:I" & Sheets("sayfa1").Cells(65536, "A").End(xlUp).Row).Value
For i = 1 To UBound(list, 1)
With ListView1
.ListItems.Add , , list(i, 1)
s = s + 1
.ListItems(s).ListSubItems.Add , , list(i, 2)
.ListItems(s).ListSubItems.Add , , list(i, 3)
.ListItems(s).ListSubItems.Add , , list(i, 4)
.ListItems(s).ListSubItems.Add , , list(i, 5)
.ListItems(s).ListSubItems.Add , , list(i, 6)
.ListItems(s).ListSubItems.Add , , list(i, 7)
.ListItems(s).ListSubItems.Add , , list(i, 8)
.ListItems(s).ListSubItems.Add , , list(i, 9)
End With
Next i
