Forum Discussion
Conditional Formatting Using Percentages
You may try the following formula for making a new rule for conditional formatting...
=B2>=B1*1.1
- MiMiMarieNov 19, 2019Copper 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_sktneerNov 19, 2019Silver 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)
- PReaganNov 19, 2019Bronze Contributor
Hello MiMiMarie,
With the conditional format applied to only B2, select B1 and B2. Then select the format painter (looks like a paint brush in the home tab) and select your entire list. This will apply your format to every other cell starting at B2.
P.S. You may double click the format painter to use it multiple times
- SergeiBaklanNov 19, 2019Diamond Contributor
As a comment - Format Painter will create a bunch of new rules, better to apply formatting to entire range.