Need help writing formulas for conditional formatting

tarmand

Board Regular
Joined
Jul 11, 2002
Messages
197
Can someone tell me how to say the following each in a different formula?

If $j8 is null
If $j8 is not null and $N8 is between 90 and 94
If $j8 is not null and $N8 is between 95 and 99
If $j8 is not null and $N8 is 100 or greater
 

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
Try

=$j8=""

=and($j8<>"",$N8>=95,$N$8<=94)

=and($j8<>"",$N8>=90,$N$8<=99)

=and($j8<>"",$N8>=100)
 
Upvote 0
Thanks! I didn't know how to say between.

Do you know how to make this apply to a cell that has a vlookup value in it?
 
Upvote 0

Forum statistics

Threads
1,224,522
Messages
6,179,292
Members
452,902
Latest member
Knuddeluff

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