Need 2 Formulas

Liverpool1959

New Member
Joined
Mar 16, 2015
Messages
45
I do a Financial Spreadsheet for my boss. Lets say A1 is our revenue. B1 is staff cost. C1 is a percentage of cost to revenue. D1 is the difference of C1 to our Goal of 22.5%

Is there a way C1 can turn Red if the Percentage exceeds our Goal of 22.5?
Is there a way D1 can be Red if the difference is over our goal

Example...C1 will be 22.00% (that stays black) D1 would be .5% (we are .5 ahead of target. It stays Black)
But if C1 is 23.00% (we exceeded our goal and I'd like this to be Red) and the D1 would be -.5% (and I want that Red)
 

Excel Facts

Using Function Arguments with nested formulas
If writing INDEX in Func. Arguments, type MATCH(. Use the mouse to click inside MATCH in the formula bar. Dialog switches to MATCH.
You can just use Conditional Formatting on cells C1 and D1:

Conditional Formatting formula on cell C1:
Code:
=C1>22.5%

Conditional Formatting formula on cell D1:
Code:
=D1<0

and choose your red formatting options.
 
Upvote 0

Forum statistics

Threads
1,214,422
Messages
6,119,395
Members
448,891
Latest member
tpierce

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