Query for mailing (1 Viewer)

habiler

Registered User.
Local time
Today, 15:35
Joined
Aug 10, 2014
Messages
70
Hello to all,

I have a table including fields candidate, Chairman, assessor1 and assessor2. By mailing I would want to print (3X) an including document on the one the name of the Chairman, on the second the name of the Assessor 1 and on the third the name of the Assessor 2 with on three documents the name of the candidate. How do I have to take myself there to create a query including these elements?

Thank you for your help.

Habiler
 

vbaInet

AWF VIP
Local time
Today, 14:35
Joined
Jan 22, 2010
Messages
26,374
I have a table including fields candidate, Chairman, assessor1 and assessor2.

How do I have to take myself there to create a query including these elements?
Habiler, your table already contains the fields that you require. What kind of document are trying to create?
 

habiler

Registered User.
Local time
Today, 15:35
Joined
Aug 10, 2014
Messages
70
It is about a Word document
 

vbaInet

AWF VIP
Local time
Today, 14:35
Joined
Jan 22, 2010
Messages
26,374
It would have been easy to do a mail merge if you have properly structured tables with one of them in this format:
Code:
CandidateID	ChairOrAssessorID
-----------	-----------------
1		1 - represents Chairman
1		2 - represents Assessor1
1		3 - represents Assessor2
With your current (not so ideal) structure, you would have to build a union query to create the above structure. More info on a Union query here:

http://www.fabalou.com/access/queries/unionquery.asp
 

Users who are viewing this thread

Top Bottom