+ Reply to Thread
Results 1 to 4 of 4

Getting unique values from duplicates

Hybrid View

  1. #1
    Registered User
    Join Date
    01-06-2015
    Location
    cardiff
    MS-Off Ver
    2013
    Posts
    3

    Getting unique values from duplicates

    Hello,

    I have a spreadsheet with several thousand rows of data.

    In column A I have a list of customer id numbers and in column B I have a list of order dates. I have duplicate customer ids with several different dates. EG I could have a customer id of 200000 with several different order dates in 2017.

    In column E & F I want to return a unique customer id from the list in column A with the most recent order date in column F. extracted from column B.

    Is there a formula or formulas to return the result I require.

    Many thanks for your assistance.

  2. #2
    Forum Moderator davesexcel's Avatar
    Join Date
    02-19-2006
    Location
    Regina
    MS-Off Ver
    MS 365
    Posts
    13,524

    Re: Getting unique values from duplicates

    Attaching a sample workbook enables others to work on your problem:

    To attach a sample workbook. Make sure there is just enough data to make it clear what is needed. Include BEFORE/AFTER sheets if needed to show the process you're trying to complete or automate. Remember to desensitize the data.

    Click on GO ADVANCED and click "manage attachments" to open the upload window.


    To add a file to a post

  3. #3
    Registered User
    Join Date
    01-06-2015
    Location
    cardiff
    MS-Off Ver
    2013
    Posts
    3

    Re: Getting unique values from duplicates

    File now attached
    Attached Files Attached Files

  4. #4
    Forum Moderator
    Join Date
    01-21-2014
    Location
    St. Joseph, Illinois U.S.A.
    MS-Off Ver
    Office 365 V 2503
    Posts
    13,708

    Re: Getting unique values from duplicates

    I have a spreadsheet with several thousand rows of data.
    The number of thousands can be an important point. This will likely need a helper column ... and if it exceeds say 50,000 rows the following formulas will likely require some adjustments.

    For the helper formula in column D this formula
    Formula: copy to clipboard
    =IF(MATCH(A2,$A$2:$A$37,0)=ROWS($2:2),ROWS($2:2),"")
    For the unique ID numbers in column E this formula
    Formula: copy to clipboard
    =IFERROR(INDEX($A$2:$A$37,SMALL($D$2:$D$37,ROWS($2:2))),"")
    and with the understanding that the most recent dates correspond with the first ID in each group this formula in F
    Formula: copy to clipboard
    =IFERROR(INDEX($B$2:$B$37,MATCH(E2,$A$2:$A$37,0)),"")
    Dave

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Replies: 11
    Last Post: 10-27-2016, 07:33 PM
  2. Remove Duplicates With Unique Values
    By Videoman22 in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 09-25-2015, 06:01 PM
  3. [SOLVED] Macro to find duplicates, concatenate Unique Values, then delete old duplicates
    By lesoies in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 09-17-2013, 04:32 PM
  4. [SOLVED] Unique Values Without Remove Duplicates
    By Camel in forum Excel General
    Replies: 25
    Last Post: 07-20-2012, 04:17 AM
  5. Replies: 6
    Last Post: 03-29-2012, 12:16 AM
  6. Macro to remove duplicates values and keep unique values bases on multiple criteria
    By Ricker090 in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 04-16-2011, 04:37 PM
  7. check for duplicates, then sum unique values
    By Weissme in forum Excel General
    Replies: 0
    Last Post: 08-09-2006, 11:35 AM

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