In separate columns I am trying to eliminate either all "EVEN" or all "ODD" numbers.
See sample –
The coding I'm using is:
ODD
=IF($J$1="ODD",IF(A2="","",IF(MOD(A1,2)=0,A2,"")),A2)
EVEN
=IF($N$1="EVEN",IF(A2="","",IF(MOD(A1,2)=1,A2,"")),A2)
When I first look the coding appeared to work, but on second glance it obviously wasn't.
Bookmarks