Conditional Formatting

jhow659

New Member
Joined
Apr 30, 2016
Messages
4
Is it possible to us conditional formatting to tell excel "if a cell in range A1:A10=number then format the cell next to it in column B if that number is not a number 1-10?"

For example:
A1= 10
A2= 1
A3= 9
A4=5
A5=6
A6=4
A7=7
A8=3
A9=8
A10=2

B1= 1
B2= 15
B3= 2
B4= 3
B5= 4
B6= 16
B7= 5
B8= 6
B9= 7
B10= 8

I want to ask if 2 is in a cell from A1:A10 then if it is the cell next to it in column B if it isn't between 1 & 10 then Highlight it red.
 

Excel Facts

How to create a cell-sized chart?
Tiny charts, called Sparklines, were added to Excel 2010. Look for Sparklines on the Insert tab.
Hi,

Assuming you won't have negative numbers, try:

=AND(ISNUMBER(A1),B1>10)

Select the range you want Conditional Formatted, use formula to format cells...
 
Upvote 0

Forum statistics

Threads
1,216,525
Messages
6,131,183
Members
449,630
Latest member
parkjun

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