I already posted this question once but I do not think it went through, so I am trying a second time.
I have 2 queries. I called them qrySend and qryFailed
qrySent has the following
Fax Jan Feb Mar
212-547-6547 5 6 2
516-547-6053 5 1 20
212-200-6547 78 20 15
qryFailed has the following
Fax Jan Feb Mar
212-547-6547 4 0 1
516-547-6053 1 1 0
212-200-6547 7 11 3
As you can see the fax is the same in both tables so I am using it as a unique id.
What I would like to do is make the 2 queries (qrySend and qryFailed) into one (qryfinal) and the result should be:
qryfinal
Fax Jan Feb Mar
212-547-6547 5 6 2
4 0 1
516-547-6053 5 1 20
1 1 0
212-200-6547 78 20 15
7 11 3
The idea is to put the numbers from qrySent on top of those from qryFailed in qryfinal
I hope this is not confusing
Thanks in advance
Ismail
I have 2 queries. I called them qrySend and qryFailed
qrySent has the following
Fax Jan Feb Mar
212-547-6547 5 6 2
516-547-6053 5 1 20
212-200-6547 78 20 15
qryFailed has the following
Fax Jan Feb Mar
212-547-6547 4 0 1
516-547-6053 1 1 0
212-200-6547 7 11 3
As you can see the fax is the same in both tables so I am using it as a unique id.
What I would like to do is make the 2 queries (qrySend and qryFailed) into one (qryfinal) and the result should be:
qryfinal
Fax Jan Feb Mar
212-547-6547 5 6 2
4 0 1
516-547-6053 5 1 20
1 1 0
212-200-6547 78 20 15
7 11 3
The idea is to put the numbers from qrySent on top of those from qryFailed in qryfinal
I hope this is not confusing
Thanks in advance
Ismail