Duplicates and unique values

S

sragor

hi,
I have the data as follow:
Month Employee IC Department
Jan Tom 123 HR
Feb Tom 123 HR
Mar Tom 123 IT

Expected result: Same department but different month is a duplicate. Same
person but NEW department is NOT a duplicate.
Month Employee IC Department Duplicates
(marked with 'x')
Jan Tom 123 HR
Feb Tom 123 HR x
Mar Tom 123 IT


To check for duplicates, I did... =IF(COUNTIF(C$2:C20,C20)>1,"x","") where
column C is the unique IC number. How do i make sure that my guy in a new
department is not treated as a duplicate because the current function will
result in all but only one to be duplicates.
 
M

muddan madhu

try this

Assumed Col A - Month
Col B - Employee
Col C - IC
Col D - Dept
Col E - Duplicate

in cell E2 put this formula and drag it down

=IF(COUNTIF($B$2:$B$10,B2)>1,IF(COUNTIF($D$2:$D$10,D2)>1,"X",""),"")
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top