Problem with Excel 2010 conditional formatting

percy83

Active Member
Joined
Mar 11, 2009
Messages
278
Hi all,

Iäve got some trouble with the new Excel 2010 conditional formatting.

I've got these three rules applied:

less then 0 = green
between 1-14 = yellow
above 15 = red

The problem that I am having is that with this 2010 version (used to run 2003) is that "rule green" is applied when a cell is blank or containing text values.

Is there something new with the logic in Excel 2010 or am I just being stupid? ;)

Thanks!
 

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
Hi all,

Iäve got some trouble with the new Excel 2010 conditional formatting.

I've got these three rules applied:

less then 0 = green
between 1-14 = yellow
above 15 = red

The problem that I am having is that with this 2010 version (used to run 2003) is that "rule green" is applied when a cell is blank or containing text values.

Is there something new with the logic in Excel 2010 or am I just being stupid? ;)

Thanks!

Try...

=ISNUMBER($A2) * ($A2 < 0)

for green. If you don't want to exclude 0 itself, change < to <=.

=($A2 >= 1) * ($A2 <= 14)

for yellow.

=ISNUMBER($A2) * ($A2 >= 15)

for red.

I expect 2003 and 2010 not to behave differently.
 
Upvote 0

Forum statistics

Threads
1,224,609
Messages
6,179,879
Members
452,948
Latest member
Dupuhini

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