Conditional Formatting

Hazeyt

New Member
Joined
Jan 23, 2023
Messages
29
Office Version
  1. 365
Hoping someone can help please.

I need to highlight any percentages that are greater than 9% in red but only for a department with 20 or more people.

Is there a formula for this?

G16 to S163 are the percentages but need to look up B16 to B163 to see if 20 or more.

Thanks
 

Excel Facts

Add Bullets to Range
Select range. Press Ctrl+1. On Number tab, choose Custom. Type Alt+7 then space then @ sign (using 7 on numeric keypad)
Is this one department per row, and column B has the number of people?


Rule "Applies To" range: $G$16:$S$163
Rule using a formula:
Excel Formula:
=AND(G16>9%,$B16>=20)
 
Upvote 0
Solution
What's in B16:B163 ? You haven't said.
Are these names of people? Number of people? Names of departments? Something else?

I'll assume department names and that every cell in B16:B163 has been filled in with a department name.
Select G16:S163

=AND(G16>=0.09,COUNTIF($B$16:$B$163,B16)>20)
 
Upvote 0
What's in B16:B163 ? You haven't said.
Are these names of people? Number of people? Names of departments? Something else?

I'll assume department names and that every cell in B16:B163 has been filled in with a department name.
Select G16:S163

=AND(G16>=0.09,COUNTIF($B$16:$B$163,B16)>20)
Thank you
 
Upvote 0

Forum statistics

Threads
1,215,153
Messages
6,123,325
Members
449,097
Latest member
gameover8

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