I have a database built that stores medical office location. I have some new data about 60,000 lines on people who have Violations with Medicare and are no longer allowed to bill medicare.
I was trying to match up the different people that match in my database and the violations. The data is either by doctors name or Address and the name of the clinic itself. I was able to easily run a query with the doctors names matching.
I am having problems with the Address matching because the addresses aren't going to match 100%. Here is what I have so far but I am getting syntax errors
Any help will be greatly appreciated.
SELECT tblZZMedicareViolation7-9-15.ADDRESS , tblService_Provider.Service_Address
FROM tblZZMedicareViolation7-9-15, tblService_Provider
WHERE (((tblZZMedicareViolation7-9-15.ADDRESS) Like "*" & tblService_Provider.Service_Address & "*"));
I was trying to match up the different people that match in my database and the violations. The data is either by doctors name or Address and the name of the clinic itself. I was able to easily run a query with the doctors names matching.
I am having problems with the Address matching because the addresses aren't going to match 100%. Here is what I have so far but I am getting syntax errors
SELECT tblZZMedicareViolation7-9-15.ADDRESS , tblService_Provider.Service_Address
FROM tblZZMedicareViolation7-9-15, tblService_Provider
WHERE (((tblZZMedicareViolation7-9-15.ADDRESS) Like "*" & tblService_Provider.Service_Address & "*"));