JaredNJames
Registered User.
- Local time
- Today, 10:38
- Joined
- Jul 7, 2007
- Messages
- 87
hi i have the following code, how do i 'call' it so that it runs to check the value?
'***************** Code Start ***************
Function nnz(testvalue As Variant) As Variant
'Not Numeric return zero
If Not (IsNumeric(testvalue)) Then
nnz = 0
Else
nnz = testvalue
End If
End Function
'***************** Code End ****************
'***************** Code Start ***************
Function nnz(testvalue As Variant) As Variant
'Not Numeric return zero
If Not (IsNumeric(testvalue)) Then
nnz = 0
Else
nnz = testvalue
End If
End Function
'***************** Code End ****************