Conditional Formatting

R

rigid_40

I am trying to get a range of cells to turn a certain color based on the
value of a cell. For example, if the cell at the end of a row in column J is
between 0 and 3, then I want the row to change color to red from A4 to I 4. I
need to do this using a drop down box which I have created. All I can do with
conditional formatting is to turn the color of the box that the number is in.
I am trying to polish up a vendor evaluation spreadsheet whereas the vendors
rating number tells the user whether they are approved (green and between
8-11), use with caution (yellow and between 4-7 ) , or disapproved (red and
between 0-3).
 
S

Sheeloo

So you want to highlight the row if cell in Col J for that row is between 0
and 3?

Suppose your data is in A1:J100 then select the whole range
in the conditional formatting dialog choose FORMULA IS and enter this
following
=AND($J1>=0,$J1<=3)
and choose the format you want...
(note the $ in front of J and its absence in front of 1... this changes the
condition to J2 for row two but keeps it J1 for row1

Change it to if do not want to include 0 and 3
=AND($J1>0,$J1<3)
 
R

rigid_40

Not sure what I am doing wrong here but when I entered the formula as typed,
it changed the whole range that I wanted to apply the formatting to red, and
I had nothing in the drop down box. Think I need to clear the "pick from drop
down list" out of the spread sheet first?
 
S

Sheeloo

Blank cells are also treated as 0 so if you have >=0 it will highlight
everything...
 
R

rigid_40

Guys; Thanks so much. I am almost there. I have it doing what I want it to
but it only works for the one row. When I tried applying the formatting for
the first 33 rows, it automatically turned all 33 rows what ever color I
selected for the formatting. Any way to copy the conditional formatting to
the rest of the rows? I dont expect more than 33 vendors per sheet. Sorry if
this seems like a dumb question, but they dont call me a rookie for
nothing.....lol Thanks in advance.
 
S

Sheeloo

Copy any cell which you have formatted.
Select the range you want to format
Choose Edit|Paste Special|Formats

Or you can select the first cell, click on the PAINT icon and paint over the
range.

Remove the = sign from >=0 and you will see the difference.
 

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

Top