Shading cells whenever they change Months

  • Thread starter Thread starter Loadmaster
  • Start date Start date
L

Loadmaster

How do I conditionally format a cell that whenever the cell Changes to Jan,
Mar, May, Jul, Sep or Nov shades “Blue†and every other month in between
shades “Green�
 
Using C/F try FormulaIS and enter:
Condition 1:
=ISNUMBER(FIND(A1,"JANMARMAYJLYSEPNOV"))
your color of choice

Then ADD a second Condition and enter
Condition 2:
=NOT(ISNUMBER(FIND(A1,"JANMARMAYJLYSEPNOV")))
your color of choice..
 
One last condition to these cells, how do I set condition 3 to if cell is
#N/A to stay white?
 
Its ok, I just figured it out. I just used the Opposite for condition 2 for
eg. =ISNUMBER(FIND(E2,"FEBAPRJUNAUGOCTDEC"))
 
Back
Top