Highlighting cells based on sum of another cell

jojo1215

New Member
Joined
Apr 7, 2018
Messages
2
I am looking to highlight a row(bolded items) if the variable below is >= and <=. Any input or direction to a link for assistance would be appreciated.
Variable
3
Basic3>=0<=3
Standard10>=4<=10
Standard Plus15>=11<=15
Extreme 40>=16<=40
Extreme Plus55>41<=55
Business 75>=56<=75
Business Plus100>=76<=100

<tbody>
</tbody><colgroup><col><col><col><col><col><col><col><col></colgroup>
 

Excel Facts

Repeat Last Command
Pressing F4 adds dollar signs when editing a formula. When not editing, F4 repeats last command.
Welcome to the Board!

So, in your example, since the value is "3", are you looking to highlight the "Basic" row?

Let's say that the variables is in cell C1. Then, to set up Conditional Formatting, select the "Basic" row, and use this Conditional Formatting formula:
Code:
=AND($C$1>=0,$C$1<=3)
and choose your formatting color.

Then, select the "Standard" row, use this CF formula:
Code:
=AND($C$1>=4,$C$1<=10)
and choose your formatting color.

Repeat this process/pattern for the rest of your rows.
 
Upvote 0
Welcome to the Board!

So, in your example, since the value is "3", are you looking to highlight the "Basic" row?

Let's say that the variables is in cell C1. Then, to set up Conditional Formatting, select the "Basic" row, and use this Conditional Formatting formula:
Code:
=AND($C$1>=0,$C$1<=3)
and choose your formatting color.

Then, select the "Standard" row, use this CF formula:
Code:
=AND($C$1>=4,$C$1<=10)
and choose your formatting color.

Repeat this process/pattern for the rest of your rows.

Yes sir that is correct fir your bolded question above...

When I did this under conditional formatting, I selected new rule and copied and pasted the formula you mentioned in response. It just seems to highlight the "Basic row" and no others. Am I selecting from the wrong area?
 
Upvote 0
When I did this under conditional formatting, I selected new rule and copied and pasted the formula you mentioned in response. It just seems to highlight the "Basic row" and no others. Am I selecting from the wrong area?
Do you mean as your change the value, it does not highlight any other rows?
Did you miss this part of my original reply?
Repeat this process/pattern for the rest of your rows.
Note that I only gave you the first two rules. You need to follow the same pattern with the other rows.
So, each row will have its own Conditional Formatting formula.
 
Upvote 0

Forum statistics

Threads
1,214,429
Messages
6,119,428
Members
448,896
Latest member
MadMarty

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