ok, I would use a small macro then just to calculate that number of blank rows your countif() will find. something along the lines of this
Sub returnval()
Dim j As Long
j = ActiveSheet.UsedRange.Rows.Count 'counts total number of used rows
j = ((j - 1) * 2) / 3 'if your top row has data,
'then two blank rows, and ends with a non blank row,
'this is the total number of blank
Range("A7").Value = j 'take your countif() minus this value to disregard blanks
End Sub
This way you still have a small code, but can let the countif() function do its job
edit: pete's is good lol
Bookmarks