Conditional Formatting

Stclements1

Board Regular
Joined
Sep 15, 2018
Messages
150
Office Version
  1. 365
Platform
  1. Windows
I did ask this question the other day and when responded to I did confirm that the answer given worked but I was wrong as for some reason it did not.
What I want to achieve is the following
If the value in Cell O3 is less than 10% of the value in Cell W3 I want the value in Cell W3 to be formatted Red
Example value in Cell O3 is 1059 the value in W3 is1035 so being that value in Cell O3 is less than 10% of the value in Cell W3 then Cell W3 would be Red and obviously remain with no Fill if it were not. The formula I was given was to put into conditional formatting was =IF(O3<0.1*W3)this but it always comes back as FALSE.
 

Excel Facts

How to fill five years of quarters?
Type 1Q-2023 in a cell. Grab the fill handle and drag down or right. After 4Q-2023, Excel will jump to 1Q-2024. Dash can be any character.
dont need the IF

=$O3<0.1*$W3)

which will give a FALSE or TRUE , and thats what drives conditional formatting
is that what you wanted ?

IF O3 is blank you will also get a TRUE
so maybe use
=AND($O3<0.1*$W3, $O3<>"")
so if O3 is blank then it will ignore
 
Upvote 0
Solution

Forum statistics

Threads
1,215,214
Messages
6,123,660
Members
449,114
Latest member
aides

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