excel - Issue with conditional formatting -
=and(indirect(address(row(), column()-1))=1, true)
when use in excel formula, correctly evaluates true or false, depending on previous column value.
but when try use part of formula of conditional formatting, returns false , unable set conditional formatting based on value.
the same conditional formatting works excel 2003
i believe need try
=indirect(address(row(), column()-1))=1
instead of
=and(indirect(address(row(), column()-1))=1, true)
Comments
Post a Comment