The following formula in conditional formatting is not behaving the same as it does in a cell of a worksheet:
IF(OFFSET(INDIRECT("RC",FALSE),0,4-COLUMN())="Answer Changed",TRUE,FALSE)
I am applying this formula to 3 columns of cells, and need it to look at the 4th column of each respective row. In a cell in a worksheet this works as expected. Is there some trick to this, as I know that the row and column functions work in other conditional formatting formula's I use (i.e., IF(MOD(ROW(),2)=1,TRUE,FALSE)
)