Conditional Formatting and Formula

emmykav

New Member
Joined
Jun 8, 2016
Messages
25
Hello, I have data in two tables, and I need to apply conditional formatting where the data matches and where it differs. For example:

if I have a business that has 2 general managers and 3 assistant managers (table 1 - this data will change), and they should have 1 general manager and 5 assistant managers (table 2- this data will stay the same), I would like the number in table 1 to show red for example for the general manager, as there are too many, and assistant manager to go orange, as there are not enough.

Thank you!
 

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.
how would you tell excel that there are to many or to few
or is the number always 1 general manager and always 5 assistant managers
you can use a countif()
but without knowing more detail of how the data is setup difficult to help

=countif(range , "general manager")
and use in conditional formatting
=countif(range , "general manager")>1
greater than 1

and

=countif(range , "assistant manager")<>5
does not equal 5
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,968
Messages
6,122,509
Members
449,089
Latest member
RandomExceller01

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