Conditional Formatting to Highlight a Numeric and Percentage Change

Chris Waller

Board Regular
Joined
Jan 18, 2009
Messages
183
Office Version
  1. 365
Platform
  1. Windows
Hi All,

I am trying to create a condittional format to highlight cells that meet the following criterir. If the cell is greater then or equal to 50 (any number I choose) and greater than or equal to 10%.

I have started with =if(and(a1-b1>=50, I just don't know how to finish the formula off. I suspect if is something on the lines of >=0.01), but I am not sure. Any help would be appreciated. I am still trying various options to see what will work.
 

Excel Facts

What does custom number format of ;;; mean?
Three semi-colons will hide the value in the cell. Although most people use white font instead.
I think you needed no IF().
The result of the formula must be TRUE or FALSE to use CF.
=and(a1-b1>=50,a1>=10%*B1)
 
Upvote 0
I think you needed no IF().
The result of the formula must be TRUE or FALSE to use CF.
=and(a1-b1>=50,a1>=10%*B1)

mart37,

Thanks for your response and it did partially work. What I would also like is to check for negative figures as well.
TIA
 
Upvote 0

Forum statistics

Threads
1,223,911
Messages
6,175,324
Members
452,635
Latest member
laura12345

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