Formula Help

D

dem

If cell B1 value is any even number with or without decimal (ie could be 26
or could be 26.23) value must be rounded to next whole integer odd value (ie
27). Thanks for helping.
 
S

ScottO

Try this ...
=IF(ISEVEN(INT(B1)),INT(B1)+1,"Do something else")
Rgds,
ScottO

| If cell B1 value is any even number with or without decimal (ie
could be 26
| or could be 26.23) value must be rounded to next whole integer odd
value (ie
| 27). Thanks for helping.
 
Top