conditional formatting

Jonbob

Board Regular
Joined
Feb 6, 2003
Messages
160
I am trying to do conditional formatting if a cell value is:

Between 0 & .33
Between .33 & .66
.66 & Up

I have so far for the criteria:

Criteria # 1 =(between(C61>0,C61<0.33))
Criteria # 2 =(between(C61>.33,C61<0.66))
Criteria # 3 =C61>0.66

The first 2 don't seem to work...

please help..

Thanks,
Jonbob
 

Excel Facts

Enter current date or time
Ctrl+: enters current time. Ctrl+; enters current date. Use Ctrl+: Ctrl+; Enter for current date & time.
Try:

Criteria # 1 =AND(C61>0,C61<0.33)
Criteria # 2 =AND(C61>.33,C61<0.66)
Criteria # 3 =C61>0.66
 
Upvote 0
try using less than . .

Criteria 1 = Cell value is less than 0.33
Criteria 2 = Cell Value is less than 0.66
Criteria 3 = Cell value is greater than or equal to 0.66

This should work ok
Bob
 
Upvote 0

Forum statistics

Threads
1,215,577
Messages
6,125,637
Members
449,242
Latest member
Mari_mariou

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