Conditional formatting question

BigBonna

New Member
Joined
Jan 27, 2014
Messages
20
Hello,

I have a table similar to the one below. The bold numbers are the maximum scores for a column.

Person
5
4
6436
A
4
6
2522
B1554
11
C316263
D63
6521

<tbody>
</tbody>


I would like to create a conditional formatting rule that would colour the cells in column B:

  • red if the value is < b1/3
  • yellow if the value is >= b1/3 but <= 2*b1/3
  • green if the value is < 2*b1/3
  • blue if the value is > b1 (to signify an error)

I used B as an example, but I would like to do this for all columns.

Is it possible to create this in one rule? If so could someone please link me to an appropriate learning resource? I am having no luck searching.

Thank you.



<colgroup><col style="width:48pt" span="7" width="64"> </colgroup><tbody>
</tbody>
 

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
Select B2:G5 and apply the following Conditional Formatting formulas:

=B2<(B$1/3)
=AND(B2>=(B$1/3),B2<=(B$1*2/3))
=B2>(B$1*2/3)
=B2>B$1
 
Upvote 0
That's wonderful. Thank you very much :)

Would you care to explain briefly how that works? Conditional formatting is something I'm yet to explore to its full potential and I'm eager to learn.

Edit: It turns out my "Person" cell (A1) is actually E4 on my spreadsheet. Naturally the formulae won't work, even when I try changing them to the new ranges/cells and replacing B with F. Any advice?
 
Last edited:
Upvote 0
It just evaluates the formulas as if they were in a cell and applies the format of the condition that returns TRUE. Here's a tutorial:

http://www.contextures.com/xlCondFormat01.html
Ignore my edit from before, I was looking at B$1/3 as B * 1/3 for some bizarre reason - too much work, too little sleep!

One more question, how would I go about setting it so there is no format if the cell is blank?
 
Upvote 0
Never mind, problem solved. I was doing the right thing (=b2=""), it was just below the other formats for some reason. Thanks for all of the help, Andrew.
 
Upvote 0

Forum statistics

Threads
1,214,951
Messages
6,122,442
Members
449,083
Latest member
Ava19

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