Conditional Formatting Formula Help

sadielynn7

New Member
Joined
May 16, 2024
Messages
2
Office Version
  1. 365
Platform
  1. Windows
I need to create three separate Conditional Formatting rules; I have tried many different IF, AND, IFS formulas and none of them are doing what we need
I need to use the formulas in conditional formatting so that the cells auto-color based on it as well

If cell D7 is > 0 and < 10000 then put "Leads" in cell K7

If cell D7 is >= 10000 and <=24999 then put "Management" in cell K7

If cell D7 is >=25000 then put "Secondary" in cell K7
 

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.
thats not conditional formatting

In K7 put


What if cell is blank or zero
=IF( And(D7>0,D7 < 10000), "Leads", If( D7 < 25000, "management", If( D7 >= 25000, "Secondary", "")))

Now in conditional formatting you need 3 rules - 1 for each colour

1 =AND( $D7>0, $D7 <10000)
2 =$D7<25000
3 =$D7>=25000
put in that Order and STOP IF TRUE
 
Upvote 0
THANK YOU!!!! I realized after I posted that I needed to put the formula in the actual cells and then conditional format for the color based on the text the formula put - I got it do exactly what I needed -Thank you so much!
 
Upvote 0

Forum statistics

Threads
1,217,349
Messages
6,136,051
Members
449,985
Latest member
rittersportyummy

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