DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Private Sub ListBox8_Click()
UserForm_Initialize
satır = ListBox8.ListIndex + 2
For i = 0 To ListBox1.ListCount - 1
liste = ListBox1.List(i, 0)
For s = 7 To 25
isim = Cells(1, s)
If UCase(Replace(Replace(liste, "ı", "I"), "i", "İ")) = _
UCase(Replace(Replace(isim, "ı", "I"), "i", "İ")) Then
If UCase(Cells(satır, s)) = "X" Then
ListBox1.Selected(i) = True
End If
End If
Next s
Next i
End Sub
Private Sub UserForm_Initialize()
ListBox1.RowSource = "Personel!b2:b20"
ListBox8.RowSource = "Liste!a2:z65000"
ListBox8.ColumnCount = 26
ListBox8.ColumnWidths = "75;100;250;100;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;15"
End Sub