bycakir
Altın Üye
- Katılım
- 1 Aralık 2017
- Mesajlar
- 222
- Excel Vers. ve Dili
- Microsoft Office 365 ProPlus
- Altın Üyelik Bitiş Tarihi
- 18-01-2025
merhaba aşagıdaki döngüde overflow hatası alıyorum. for next dongusunun başladıgı yerde kırmızı ile boyadım yardımcı olabilecek varmı
Private Sub CommandButton8_Click()
Dim myRow, id, son, tes As Long
Dim sh As Worksheet
Dim b As Byte
Set sh = ThisWorkbook.Sheets("AddressBook")
myRow = Application.WorksheetFunction.CountA(sh.Range("A:A")) + 1
id = Application.WorksheetFunction.Max(sh.Range("A:A")) + 1
son = Me.ListBox1.List(Me.ListBox1.ListIndex, 0)
For b = son To id
tes = WorksheetFunction.CountIf(sh.Range(Cells(b, "G")).Value, "")
Next b
End Sub
Private Sub CommandButton8_Click()
Dim myRow, id, son, tes As Long
Dim sh As Worksheet
Dim b As Byte
Set sh = ThisWorkbook.Sheets("AddressBook")
myRow = Application.WorksheetFunction.CountA(sh.Range("A:A")) + 1
id = Application.WorksheetFunction.Max(sh.Range("A:A")) + 1
son = Me.ListBox1.List(Me.ListBox1.ListIndex, 0)
For b = son To id
tes = WorksheetFunction.CountIf(sh.Range(Cells(b, "G")).Value, "")
Next b
End Sub