Odd or Even

Hi All

Is there any function that can return a TRUE if a value is even and FALSE if not ?

Thank you

0 2 581
2 REPLIES 2

use with a divide by two. even numbers will have no remainder

 

Thank you!

I needed to do this to calculate even and odd week numbers  and used this formula:

IF(MOD(WEEKNUM(TODAY()),2)=0, "value if true", "value if false")

Top Labels in this Space