Results 1 to 4 of 4
  1. #1
    geocan2006 is offline Advanced Beginner
    Windows 10 Access 2010 32bit
    Join Date
    May 2016
    Posts
    34

    Highest Score sort in duplicate values

    Hi, I have a table with duplicate values in Names Column, it consist of 2 columns, Name and Score, I need a query to indicates unique value in Name with highest in score only,
    Thanks

  2. #2
    pbaldy's Avatar
    pbaldy is offline Who is John Galt?
    Windows XP Access 2007
    Join Date
    Feb 2010
    Location
    Nevada, USA
    Posts
    22,652
    Try a totals query:

    SELECT NameField, Max(ScoreField) AS MaxScore
    FROM TableName
    GROUP BY NameField
    Paul (wino moderator)
    MS Access MVP 2007-2019
    www.BaldyWeb.com

  3. #3
    geocan2006 is offline Advanced Beginner
    Windows 10 Access 2010 32bit
    Join Date
    May 2016
    Posts
    34
    Thank you, worked like a charm

  4. #4
    pbaldy's Avatar
    pbaldy is offline Who is John Galt?
    Windows XP Access 2007
    Join Date
    Feb 2010
    Location
    Nevada, USA
    Posts
    22,652
    Happy to help!
    Paul (wino moderator)
    MS Access MVP 2007-2019
    www.BaldyWeb.com

Please reply to this thread with any new information or opinions.

Similar Threads

  1. SUm duplicate values then delete duplicate rows
    By DonKaponne in forum Queries
    Replies: 1
    Last Post: 09-14-2014, 04:18 PM
  2. Replies: 1
    Last Post: 06-18-2014, 04:08 AM
  3. Replies: 1
    Last Post: 06-24-2013, 02:24 AM
  4. Replies: 5
    Last Post: 01-29-2013, 03:38 PM
  5. Replies: 2
    Last Post: 01-23-2013, 04:57 PM

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Other Forums: Microsoft Office Forums