H
Henrootje
I have a query that will generate a list of documents that has to be
printed for a certain country:
This selectioon procvess does what we want
SELECT qryNL.[Res/NONRES], qryNL.[SelectRES/NONRES], qryNL.Client,
qryNL.Land, qryNL.DocCode, qryNL.DocNaam, qryNL.DocTekst,
qryNL.DocToelichting, qryNL.Doc_Intern_NL
FROM qryNL;
This would deliver e.g. the following:
Belgium
CPA - Certified Copy Passport
POA - Power of attorney
STA - Statutes
Spain
CPA - Certified Copy Passport
POA - Power of attorney
STA - Statutes
POD - Poderes
But I would like to see the following
Belgium
CPA - Certified Copy Passport
POA - Power of attorney
STA - Statutes
Spain
POD - Poderes
Notice how the documents CPA / POA / STA are not mentioned at 'SPain'
because they have been mentioned already with Belgium.
How would I be able to do this?
Thanks for thinking!
Henro
printed for a certain country:
This selectioon procvess does what we want
SELECT qryNL.[Res/NONRES], qryNL.[SelectRES/NONRES], qryNL.Client,
qryNL.Land, qryNL.DocCode, qryNL.DocNaam, qryNL.DocTekst,
qryNL.DocToelichting, qryNL.Doc_Intern_NL
FROM qryNL;
This would deliver e.g. the following:
Belgium
CPA - Certified Copy Passport
POA - Power of attorney
STA - Statutes
Spain
CPA - Certified Copy Passport
POA - Power of attorney
STA - Statutes
POD - Poderes
But I would like to see the following
Belgium
CPA - Certified Copy Passport
POA - Power of attorney
STA - Statutes
Spain
POD - Poderes
Notice how the documents CPA / POA / STA are not mentioned at 'SPain'
because they have been mentioned already with Belgium.
How would I be able to do this?
Thanks for thinking!
Henro