Conditional Formatting Issue

LindaDuhe

New Member
Joined
May 22, 2007
Messages
9
I have an issue regarding conditional formatting. I have three conditions (formulas) that present the figures colour coded. I have the following three (simple) formula's:
=IF(G7<90%;E7;0) - pattern = RED
=IF(G7>99,9%;E7;0) - pattern = GREEN
=IF(G7>90%;E7;IF(G7<100%;E7;0)) - pattern = ORANGE

Now the problem I have, is that if my G column shows as the result 0%, conditional formatting does not appear to work. The E column should turn RED (because <90%), however when it is 0% it does not work.

Any way to fix this????
 

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
Hi, Linda.

Maybe you want conditions like below?

HTH, Fazza

Code:
=G7<0
=G7>99%
=AND(G7>90%,G7<1)
 
Upvote 0
I need three conditions that say:
>99.9%
between 90% and 99.9%
<90%

Since you can only have 3 formula'/conditions I cannot change this. Even when you try inputting something like =0%, it does not work....
 
Upvote 0

Forum statistics

Threads
1,214,653
Messages
6,120,751
Members
448,989
Latest member
mariah3

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