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

Can you sort left to right?
To sort left-to-right, use the Sort dialog box. Click Options. Choose "Sort left to right"

Fazza

MrExcel MVP
Joined
May 17, 2006
Messages
9,368
Hi, Linda.

Maybe you want conditions like below?

HTH, Fazza

Code:
=G7<0
=G7>99%
=AND(G7>90%,G7<1)
 
Upvote 0

LindaDuhe

New Member
Joined
May 22, 2007
Messages
9
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,190,878
Messages
5,983,366
Members
439,841
Latest member
goodwillhunting

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
Top