Conditional Formatting

dsami0122

New Member
Joined
Mar 31, 2016
Messages
40
Office Version
  1. 365
Platform
  1. Windows
I have two cells one with a mulitplier and one blank

What I am trying to do is:

If the Multiplier is below 3.00 then it will Turn Red
If the Multiplier is above 3.00 but lower than 3.5 it will turn yellow
If the Multiplier is above 3.5 it will turn green

How can I do this with conditional formatting?
 

Attachments

  • Screenshot 2023-12-13 145845.png
    Screenshot 2023-12-13 145845.png
    9 KB · Views: 5

Excel Facts

Links? Where??
If Excel says you have links but you can't find them, go to Formulas, Name Manager. Look for old links to dead workbooks & delete.
I have two cells one with a mulitplier and one blank

What I am trying to do is:

If the Multiplier is below 3.00 then it will Turn Red
If the Multiplier is above 3.00 but lower than 3.5 it will turn yellow
If the Multiplier is above 3.5 it will turn green

How can I do this with conditional formatting?
I also tried to do something like this and couldnt get it to work
=IF([@Multiplier]<3, "LOW"), IF(AND([@Multiplier]>3,[@Multiplier]<3.5,"MID"), IF([@Multiplier]>4.0, "HIGH"))))
 
Upvote 0
My Excel is too old to upload Conditional Formatting, but this is what it would look like if your Multiplier is in Column A. It looks like you have your data formatted as a table, but your formula isn't using it quite right for the Multiplier Level.

1702499624898.png


Your formula will work like this (but your "high" is segregated at 4, instead of 3.5 like your original post, so you may want to change that to 3.5).


Book1
ABC
1MultiplierMultiplier Level
23.44MID
33.18MID
42.65LOW
52.77LOW
63.19MID
73.09MID
82.63LOW
93.01MID
103.47MID
113.46MID
124.09HIGH
132.94LOW
143.43MID
153.15MID
163.92FALSE
17
Sheet1
Cell Formulas
RangeFormula
B2:B16B2=IF(Table1[[#This Row],[Multiplier]]<3,"LOW",IF(AND(Table1[[#This Row],[Multiplier]]>3,Table1[[#This Row],[Multiplier]]<3.5),"MID",IF(Table1[[#This Row],[Multiplier]]>4,"HIGH")))
 
Upvote 0

Forum statistics

Threads
1,215,068
Messages
6,122,950
Members
449,095
Latest member
nmaske

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