How to change the colour of a cell based on the value of another cell

RobD1975

New Member
Joined
Oct 13, 2017
Messages
3
Hi Everyone,

I'm sure this is a basic question, so please excuse my ignorance. I am trying to format the fill colour of a cell based on the value in a different Cell.

So for instance if Cell A1 will have a range of values between 1 and 15, I want cell B1 to turn green if the value in cell A1 is between 5 and ten, turn orange if between 1 and 5 and turn red if 0.

Is there a way to do this, I have tried conditional formatting, but I cant seem to get the desired result.

Many thanks in advance

Rob
 

Excel Facts

Shade all formula cells
To shade all formula cells: Home, Find & Select, Formulas to select all formulas. Then apply a light fill color.
Welcome to Mr Excel

The rules are not well defined
0 -> red
1 - 5 -> orange
5 - 10 -> green

Questions:
5 should it be orange or green?
What about 11-15?

M.
 
Last edited:
Upvote 0
In Conditional formatting you will need 3 rules, one for each color. Changing the number to match your criteria.
Code:
=AND(A1>=5,A1<=10)
 
Upvote 0

Forum statistics

Threads
1,215,331
Messages
6,124,311
Members
449,152
Latest member
PressEscape

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top