Technology6 mins ago
Checking For Duplicates
4 Answers
Anyone have any idea how I would identify duplicate entries on an Excel sheet or within an Access database? Each entry has an individual reference number but there are some duplicates. Please help!!!!!
Answers
Best Answer
No best answer has yet been selected by Sproutstick. Once a best answer has been selected, it will be shown here.
For more on marking an answer as the "Best Answer", please visit our FAQ.For access go here http://office.microsoft.com/en-gb/assistance/HA010345581033.aspx for excel just sort the columns alphabetically or use auto filter to filter the columns.
In Access you can run an SQL query to find entries which are duplicated. There may be more user friendly ways of doing this but if you enter your own column names (e.g. the column that you're looking for duplication in may be called "customerRef") in place of my examples this *may* work:
select *
from TABLENAME alias1 inner join TABLENAME alias2
on alias1.customerRef= alias2.customerRef;
This translates as "show all info in the table where the first customerRef that you find has a match elsewhere in the table"
Related Questions
Sorry, we can't find any related questions. Try using the search bar at the top of the page to search for some keywords, or choose a topic and submit your own question.