Name Comparison Through Several Sheets

athena53

New Member
Joined
Dec 28, 2015
Messages
1
I have 5 sheets with employee names that need to be compared. Each sheet has different times that an employee should have received a review; raise, promotion, transfer, pay class change, and job title change. If an employee received two of these events at the same time they only need one review so I need something that tells me that the name is on one of the other sheets.
Was trying conditional formatting but that doesn't seem to be working with multiple sheets.
Thank You
Athena
 

Excel Facts

Move date out one month or year
Use =EDATE(A2,1) for one month later. Use EDATE(A2,12) for one year later.
Code:
=COUNTIF(Sheet1!$A:$A,"John")+COUNTIF(Sheet2!$A:$A,"John")+COUNTIF(Sheet3!$A:$A,"John")

Where "John" is likely to be A2.

Unfortunately COUNTIF is not a 3D function, so this is probably the easiest way to get it done quickly.
 
Upvote 0

Forum statistics

Threads
1,215,250
Messages
6,123,887
Members
449,130
Latest member
lolasmith

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