OK, Iwill try to make this is as simple as possible.
My co-worker has an excel spreadsheet with 20,000 account numbers in it...it is the master list.
Each month she gets a new report of roughly 1,200 accounts and 2/3's of them are duplicates of what are in the master list.
she has been going through this list manually every month to delete the duplicates...which you can imaging takes over a day to do...I told her I would automate that process and do it in access....
HERE THE CATCH IS THOUGH
this is what she actually needs...from the report that she gets each month she needs to find only the new account numbers...so lets say this month that she has 600 account numbers but only 60 of them are brand new (i.e. not in the master list)...so there would be three tables
1 The Master List
2 The Temp List (which would house the monthly report)
3 The Dump Table (which would be used to dump all the new accounts to so that after she checks them she can add them to the Master List)
I have tried to do a query in access but I can't fiqure it out...so I need your help
select Temp_SS_Numbers.Temp_SS_Numbers
FROM Temp_SS_Numbers
OUTER JOIN Master_SS_List
ON Temp_SS_Numbers.Temp_SS_Numbers <> Master_SS_List.SS_Numbers;
I am getting a syntax error near the From Statement
I don't know what the deal is...and also I want to dump the results into the third table if that is possible so she so she can review them....
so I tried to do a query off of two tables and then put the results back into a third table but I keep on getting prompted for a parameter...
Here is a screen shot of the SQL I wrote...I am sure it is incomplete...but if someone could give me a hand on this it would be nice
Thanks,
Leeland
My co-worker has an excel spreadsheet with 20,000 account numbers in it...it is the master list.
Each month she gets a new report of roughly 1,200 accounts and 2/3's of them are duplicates of what are in the master list.
she has been going through this list manually every month to delete the duplicates...which you can imaging takes over a day to do...I told her I would automate that process and do it in access....
HERE THE CATCH IS THOUGH
this is what she actually needs...from the report that she gets each month she needs to find only the new account numbers...so lets say this month that she has 600 account numbers but only 60 of them are brand new (i.e. not in the master list)...so there would be three tables
1 The Master List
2 The Temp List (which would house the monthly report)
3 The Dump Table (which would be used to dump all the new accounts to so that after she checks them she can add them to the Master List)
I have tried to do a query in access but I can't fiqure it out...so I need your help
select Temp_SS_Numbers.Temp_SS_Numbers
FROM Temp_SS_Numbers
OUTER JOIN Master_SS_List
ON Temp_SS_Numbers.Temp_SS_Numbers <> Master_SS_List.SS_Numbers;
I am getting a syntax error near the From Statement
I don't know what the deal is...and also I want to dump the results into the third table if that is possible so she so she can review them....
so I tried to do a query off of two tables and then put the results back into a third table but I keep on getting prompted for a parameter...
Here is a screen shot of the SQL I wrote...I am sure it is incomplete...but if someone could give me a hand on this it would be nice
Thanks,
Leeland
