Forum Discussion
Larry1921
Dec 11, 2020Copper Contributor
Odd / Even Numbers
I am trying to figure out a formula where you can reference a cell and if the number in the cell is an odd one it would put the word odd in the current cell and if it is even the same thing. I was t...
Dec 11, 2020
Hi there,
Please follow the attached file.
However, you may write the following formula:
=IF(ISEVEN(A3)=FALSE, "Odd", "Even")