Excel conditional formatting fill down is working but not recording the correct formula once filled down.
eg. Cells in Column B (eg B6) have a value (active
, exit
, suspend
). The adjacent Column C cell needs to be colored green if the adjacent value in column B shows the entry active
. This works fine when using in C6 Use a formula to determine which cells to format, and Format values where this formula is true shows =B6="active"
and cell C6 comes up filled with the green color.
Upon fill down from cell C6 the formatting is all displayed correctly for each additional instance of the word active
in a column B cell. However when the conditional formatting rule is viewed for a cell such as C7, C8 onwards instead of showing =B7"active"
or =B8="active"
etc they still all say =B6="active"
.
Does anyone know why they do not refer to their relative adjacent cell (B7, B8, B9 etc) instead of the original B6? The formula originally was =$B$6="active"
and has been edited to remove the absolute reference and replaced with =B6="active"
to allow a relative fill down.