Link to home
Start Free TrialLog in
Avatar of Sean Meyer
Sean MeyerFlag for United States of America

asked on

Access -- Filter out duplicates

Access 2010 - Here is what I am doing ---

Fields -
A  -- Person ID
B -- Location
C -- Date
D -- Person seen
E -- Items bought

Table contains 100,000 records.  First I created a query to filter on location.  Dropped results to 1,800.  Problem I am having is that even though I only included columns A, B, C and D I am getting duplicate entries based on column E.

What I would like to do is only see each person ID once per day. What do I need to do in order to accomplish this feat?
ASKER CERTIFIED SOLUTION
Avatar of Rey Obrero (Capricorn1)
Rey Obrero (Capricorn1)
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Sean Meyer

ASKER

Figured it out and then found you had posted the correct answer.

Add the Totals button to your query design and it removes duplicates.

It will add the row "Total:" to your query design and each item will show "Group By"

Thank you!