How to Conditionally Format Other Cells or Rranges

  • Thread starter Thread starter Rene
  • Start date Start date
R

Rene

I want to have a cell or a range of cells be formatted with a pattern or a
border or both, or even unprotected (if not too complicated) whenever another
cell in the Status column displays the string: "DONE". Is it possible to use
Conditional Formatting for that? Or would I have to use an IF statement
instead? I've managed to have a simple IF statement display directions
whenever the DONE text shows up in the Status column, but don't know if it's
feasible to use it with formatting of another range. Is it and if so, how?
 
This is still done using the conditional Formatting option. Just change
from "Cell Value Is" to "Formula Is".
Then use the appropriate formula. Example, if the word "DONE" were to show
up in cell A1, then highlight the range you want to change as a result of
that and enter this formula.

=A1="Done"

HTH,
Paul
 
If you need a whole range highlighted as a result of a value in one column,
then the CF formula will need *absolute* addressing, so =$A1="Done" if you
want a range spreading across a row highlighted as a dependency on column A,
or =$A$1="Done" if a range covering multiple rows and columns is to be
dependent on A1.
 
Good catch.

--

David Biddulph said:
If you need a whole range highlighted as a result of a value in one
column, then the CF formula will need *absolute* addressing, so
=$A1="Done" if you want a range spreading across a row highlighted as a
dependency on column A, or =$A$1="Done" if a range covering multiple rows
and columns is to be dependent on A1.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top