R
Robert Flanagan
Any suggestions on how to confirm that the value in a cell is a whole
number?
Bob
number?
Bob
Robert said:Any suggestions on how to confirm that the value in a cell is a whole
number?
Bob
Rick said:I'm pretty sure you don't want the Abs function in there (at least not
how you used it). What is wrong with just this....
IsWholeNumber = MyValue = Int(MyValue)
smartin said:My understanding of the definition of "whole numbers" is "the set of
positive integers, including zero". If the OP meant "integer number",
then I agree to remove the Abs wrapper in the test, as you suggest.
Phil said: