Function determine if date is even or odd

  • Thread starter Thread starter Guest
  • Start date Start date
Let's assume that you mean that the day is even. If the date is in A1 then:

=ISEVEN(DAY(A1)) will return TRUE if the date is even,
 
And make sure you have the analysis toolpak loaded so you can use =iseven().

An alternative that doesn't need the ATP:
=mod(day(a1),2)=0
 
Back
Top