I have an access table with 11 columns.
- PeriodYear
- PeriodCycle
- PeriodZone
- PHSRCode
- LastName
- FirstName
- PRC
- Specialty
- HCPType
- Class
- Institution
I want to find duplicate entries for it using Lastname, Firstname, and Institution as the basis where to find the duplicates.
Example Table:
PeriodYear PeriodCycle PeriodZone PHSRCode Lastname Firstname PRC Specialty HCPType Class Institution
2013 1 1 SF1-01 Almeda Sancho 111 GP CON A PGH
2013 1 2 SF1-01 Almeda Sancho 111 GP CON A LPDH
2013 1 3 SF1-01 Almeda Sancho 222 GP CON A PGH
The result should be:
PeriodYear PeriodCycle PeriodZone PHSRCode Lastname Firstname PRC Specialty HCPType Class Institution
2013 1 1 SF1-01 Almeda Sancho 111 GP CON A PGH
2013 1 3 SF1-01 Almeda Sancho 222 GP CON A PGH
The query will be based on the fields PeriodYear, PeriodCycle, and PHSRCode, which will come from variables.
Is this possible?