Thread
:
countif
View Single Post
#
2
Posted to microsoft.public.excel.programming
excelent
external usenet poster
Posts: 695
countif
Sub RowCount()
Dim x, Xcount
For Each x In Selection
If x.Value < 0 Then Xcount = Xcount + 1
Next
MsgBox ("Numbers of rows < 0 : ") & Xcount
End Sub
Reply With Quote
excelent
View Public Profile
Find all posts by excelent