+ Reply to Thread
Results 1 to 3 of 3

Eliminating duplicate numbers via Mac Excel

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    11-13-2010
    Location
    Warren, Michigan
    MS-Off Ver
    Excel 2008 for Mac
    Posts
    307

    Eliminating duplicate numbers via Mac Excel

    I imagine you guys have answer this question a zillion times - SORRY I can't seem to find any reference on this.

    Original list:

    A1: 8
    A2: 7
    A3: 1
    A4: 0
    A5: 6
    A6: 6

    What I'm wanting is to eliminate is any duplicate numbers (6 on this example):

    C1: 8
    C2: 7
    C3: 1
    C4: 0
    C5: 6
    C6: -
    Last edited by khank; 03-13-2011 at 01:31 AM.

  2. #2
    Forum Expert martindwilson's Avatar
    Join Date
    06-23-2007
    Location
    London,England
    MS-Off Ver
    office 97 ,2007
    Posts
    19,320

    Re: Eliminating duplicate numbers via Mac Excel

    in b1 filled down
    =IF(A1="","",IF(COUNTIF($A$1:A1,A1)=1,ROW(),""))
    in c1 filled down
    =IF(ROW(A1)>COUNT($B$1:$B$200),"",INDEX($A$1:$A$20,MATCH(SMALL($B$1:$B$200,ROW(A1)),$B$1:$B$200,0)))
    "Unless otherwise stated all my comments are directed at OP"

    Mojito connoisseur and now happily retired
    where does code go ?
    look here
    how to insert code

    how to enter array formula

    why use -- in sumproduct
    recommended reading
    wiki Mojito

    how to say no convincingly

    most important thing you need
    Martin Wilson: SPV
    and RSMBC

  3. #3
    Forum Contributor
    Join Date
    11-13-2010
    Location
    Warren, Michigan
    MS-Off Ver
    Excel 2008 for Mac
    Posts
    307

    Re: Eliminating duplicate numbers via Mac Excel

    Works great, thanks for your help.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

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

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1