Forum Discussion
Conditional Formatting Using Percentages
I need to highlight a cell that is 10% over another cell.
example
B1 is $100
B2 is $110
i need B2 to be highlighted. since its 10% higher.
I know how to do this if put in with exact numbers but i want it done in percentage for
8 Replies
- Subodh_Tiwari_sktneerSilver Contributor
You may try the following formula for making a new rule for conditional formatting...
=B2>=B1*1.1
- MiMiMarieCopper Contributor
WORKED GREAT!!!!
Next Question:
How can I get it to work for the rest of my cells so i don't have to input it for every single one.
example:
B1 $100
B2 $110 =B2>=B1*1.1
B3 $200
B4 $220 =B4>=B3*1.1
B5 $300
B6 $330 =B6>=B5*1.1
I need B2 to change, B4 to change, & B6 to change. I can't copy the formatting because it only copies the original formatting and doesn't continue it down the line with new cells. Any suggestions?
I have 10 workbooks to do this to with about 200+ cells and I dont want to spend weeks on this.
- Subodh_Tiwari_sktneerSilver Contributor
In that case you may select the range B2:B6 and make a new rule for conditional formatting using the formula given below...
=AND(MOD(ROW(),2)=0,B2>=B1*1.1)