Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Public Function basIsOdd(Optional varIn As Variant) As Boolean
'Return True if the input value is an Odd Number, _
Else Return False
'Eliminate the obvious casual first
If (IsNull(varIn)) Then
Exit Function
End If
If (IsNumeric(varIn)) Then
If ((CLng(varIn) Mod 2) <> 0) Then
basIsOdd = True
End If
End If
End Function