Vincent paul
New Member
- Joined
- Oct 8, 2014
- Messages
- 22
Function countonlynos(countrange As Range)
Dim tempcount As Double
For Each cell In countrange
If IsNumeric(cell.Value) = True And IsEmpty(cell.Value) = False Then
tempcount = tempcount + 1
End If
Next
countonlynos = tempcount
End Function
Dim tempcount As Double
For Each cell In countrange
If IsNumeric(cell.Value) = True And IsEmpty(cell.Value) = False Then
tempcount = tempcount + 1
End If
Next
countonlynos = tempcount
End Function