I am working on a MS Excel 2010 spreadsheet where the users want to have some combined conditional formatting. Individually the functions I want to apply are working correctly, i.e this condition formula works:
= INDIRECT( ADDRESS( IF( ISEVEN( ROW() ), ROW() - 1, ROW() ), 22) ) = "6 Monthly"
As does this:
= OR( COLUMN() = 25, COLUMN() = 28)
But combining the formulae fails to apply any format. No error is returned, but the highlighted area is unaffected on applying the condition:
AND( INDIRECT(ADDRESS(IF(ISEVEN(ROW()), ROW() - 1, ROW()), 22)) = "3 Monthly", OR( COLUMN() = 25, COLUMN() = 28) )
If I want the cells where both conditions are met to be highlighted, what should I enter as the formula?
6 monthly
; the rule=OR($V11="6 monthly",COLUMN()=25,COLUMN()=28)
; the Applies to:=$W$11:$AB$18,$Y$11:$Y$18,$AB$11:$AB$18
. BTW I'm using Excel 2007. – pnuts Jan 16 at 3:06