M
magmike
For the purpose of my question, the tables I am dealing with are named
as such:
RawData (houses the data on our customer's employees as we enter
it)
TheirData (houses data we will import that we receive from our
client)
The purpose here is to compare their data with our data, as we don't
always get all the information we need from the start. Monthly, they
will send us a list of employee deductions, which will inform us if we
have not enrolled someone in benefits they are being charged for.
My thought was to do an append query that would check RawData and
compare it with TheirData using social security numbers as an
identifier. If there is a discrepancy, append a new table,
Discrepancies, with a new record displaying the discrepancy. For
example, if we find Joe Smith (333-222-4444) in TheirData being
charged an amount for MedPlan1, but show him in RawData under the
MedPlan1 field as being charged $0.00 - this means he has not been
enrolled. I would then want to append Discrepancies with something
like, Joe Smith billed for MedPlan1 but not enrolled. The
Discrepancies table would then be used to generate a report.
Am I on the right track, and if so, how would I structure an append
query to do this?
Thanks in advance for your help!
magmike
as such:
RawData (houses the data on our customer's employees as we enter
it)
TheirData (houses data we will import that we receive from our
client)
The purpose here is to compare their data with our data, as we don't
always get all the information we need from the start. Monthly, they
will send us a list of employee deductions, which will inform us if we
have not enrolled someone in benefits they are being charged for.
My thought was to do an append query that would check RawData and
compare it with TheirData using social security numbers as an
identifier. If there is a discrepancy, append a new table,
Discrepancies, with a new record displaying the discrepancy. For
example, if we find Joe Smith (333-222-4444) in TheirData being
charged an amount for MedPlan1, but show him in RawData under the
MedPlan1 field as being charged $0.00 - this means he has not been
enrolled. I would then want to append Discrepancies with something
like, Joe Smith billed for MedPlan1 but not enrolled. The
Discrepancies table would then be used to generate a report.
Am I on the right track, and if so, how would I structure an append
query to do this?
Thanks in advance for your help!
magmike