Results 1 to 5 of 5

Thread: Find duplicate values

  1. #1
    Member
    Join Date
    Apr 2011
    Posts
    69
    Rep Power
    14

    Find duplicate values

    I want to find out from the given data the repeating values for certain numbers. e.g i have seq no and divisions and if seq no is repeating for another division then say repeating. I have attached the excel file giving the data and requirment.

    kindly assist.
    Attached Files Attached Files
    ----
    excel_learner
    (Using XL 2007 & 2010)

    -------Learning never stops!

  2. #2
    Administrator Admin's Avatar
    Join Date
    Mar 2011
    Posts
    1,123
    Rep Power
    10
    Hi,

    In C2 and copied down,

    =IF(COUNTIFS($A$2:$A$4446,A2,$B$2:$B$4446,9)>1,"Ye s","No")
    Cheers !

    Excel Range to BBCode Table
    Use Social Networking Tools If You Like the Answers !

    Message to Cross Posters

    @ Home - Office 2010/2013/2016 on Win 10 (64 bit); @ Work - Office 2016 on Win 10 (64 bit)

  3. #3
    Member
    Join Date
    Apr 2011
    Posts
    69
    Rep Power
    14
    Thanks, but it gives yes even where 9 and 5 are not linked. e.g if you apply the formula and check seq no (JE) 2357 it has only 9 no repeat on 5. I want to mark yes for all the records where seq no (JE) is repeating with division 5 and 9 and if it is for 5 and 9 alone then NO.
    Last edited by excel_learner; 10-04-2011 at 03:48 PM.
    ----
    excel_learner
    (Using XL 2007 & 2010)

    -------Learning never stops!

  4. #4
    Administrator Admin's Avatar
    Join Date
    Mar 2011
    Posts
    1,123
    Rep Power
    10
    Hi,

    May be..

    =IF((COUNTIFS($A$2:$A$4446,A2,$B$2:$B$4446,"5")>1) *(COUNTIFS($A$2:$A$4446,A2,$B$2:$B$4446,"9")>1),"Y es","No")
    Cheers !

    Excel Range to BBCode Table
    Use Social Networking Tools If You Like the Answers !

    Message to Cross Posters

    @ Home - Office 2010/2013/2016 on Win 10 (64 bit); @ Work - Office 2016 on Win 10 (64 bit)

  5. #5
    Member Rajan_Verma's Avatar
    Join Date
    Sep 2011
    Posts
    81
    Rep Power
    14
    It can be Use to identify Duplicates..
    =COUNTIF($A$1:A1,A1)

Similar Threads

  1. Replies: 6
    Last Post: 05-16-2013, 09:56 AM
  2. Replies: 7
    Last Post: 04-22-2013, 01:41 PM
  3. Replies: 4
    Last Post: 04-05-2013, 12:08 PM
  4. Unmerge Cells and Fill with Duplicate Values
    By princ_wns in forum Excel Help
    Replies: 3
    Last Post: 10-09-2012, 07:36 AM
  5. Unique Large Values From Duplicate List
    By S M C in forum Excel and VBA Tips and Tricks
    Replies: 0
    Last Post: 10-04-2011, 02:17 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •