Public Function IsPosInteger(X As Double) As Boolean
Const PRECISION = 0.000000000001
'Adjust PRECISIONS as desired to avoid
'false negatives caused by rounding errors
IsPosInteger = (X > 0) _
And (Abs(X - CLng(X)) <= PRECISION)
'Use X <=0 if you count zero as a +ve integer
End Function
Ask a Question
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.