Conditional Formatting referencing Conditional Formatting in another column

pherman

New Member
Joined
Jan 11, 2018
Messages
7
Office Version
  1. 365
Platform
  1. Windows
Hello! I've been trying to figure out a way where I can write a conditional formatting equation that references the conditional formatting in another column. In the regional response rate column, I've ranked each customers' response rate compared to their regional average, and applied the conditional formatting rules : red <84%, yellow 85% - 104%, green 105% and greater. I want to apply conditional formatting rules to Column A (response rate) by referencing the color in Column B. For example, 67.21% would change to green because that particular customer ranks 143% in their regional response rate. Thank you in advance for your assistance!

Response
Rate (Column A)
Regional Response Rate (Column B)
0.00%​
0%
0.00%​
0%
0.00%​
0%
0.00%​
0%
0.00%​
0%
67.21%
143%
54.59%​
116%
9.29%​
20%
55.70%​
109%
28.35%​
60%
29.08%​
57%
51.06%​
100%
 

Excel Facts

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.
How about
+Fluff v2.xlsm
AB
1Response RateRegional Response Rate
20.00%0%
30.00%0%
40.00%0%
50.00%0%
60.00%0%
767.21%143%
854.59%116%
99.29%20%
1055.70%109%
1128.35%60%
1229.08%57%
1351.06%100%
Master
Cells with Conditional Formatting
CellConditionCell FormatStop If True
A2:B13Expression=$B2>104%textNO
A2:B13Expression=AND($B2>84%,$B2<105%)textNO
A2:B13Expression=$B2<84%textNO
 
Upvote 0
you can use the same rule
formula
select columns A and B
then use 3 formulas

: red <84%,
$B1 <84%


yellow 85% - 104%,
$b1 < 104%


green 105% and greater.

$b1 >= 104%

Order and click on stop if true

Book2
ABCDEFGHIJK
1ResponseRegional Response Rate (Column B)ResponseRegional Response Rate (Column B)
2Rate (Column A)Rate (Column A)
30.00%0%0.00%0%
40.00%0%0.00%0%
50.00%0%0.00%0%
60.00%0%0.00%0%
70.00%0%0.00%0%
867.21%143%67.21%143%
954.59%116%54.59%116%
109.29%20%9.29%20%
1155.70%109%55.70%109%
1228.35%60%28.35%60%
1329.08%57%: red <84%, yellow 85% - 104%, green 105% and greater. 29.08%57%
1451.06%100%51.06%100%
15
16
17
18
19
20
21
22
23
Sheet1
Cells with Conditional Formatting
CellConditionCell FormatStop If True
A3:B14Expression=$B3>=1.05textNO
A3:B14Expression=$B3<0.84textYES
A3:B14Expression=$B3<1.04textYES
 
Upvote 0

Forum statistics

Threads
1,214,599
Messages
6,120,447
Members
448,966
Latest member
DannyC96

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