C
Cynthia
Hi all,
I would like to get a count of all non empty "records" (range of Ax
x) and tried to use this code,
but it keeps returning 32767...is this the correct way?
intRow = 2
RecordCount = 0
For i = intRow To Rows.Count
If Sheet2.Range("A" & intRow & "
" & intRow).Value <> "" Then
RecordCount = RecordCount + 1
Else
Exit For
End If
Next
Thank you
Cindi
I would like to get a count of all non empty "records" (range of Ax
but it keeps returning 32767...is this the correct way?
intRow = 2
RecordCount = 0
For i = intRow To Rows.Count
If Sheet2.Range("A" & intRow & "
RecordCount = RecordCount + 1
Else
Exit For
End If
Next
Thank you
Cindi