Rather than using your approach, it's far better to use two tables.
The first table contains information about the company, the second table
contains information about the individuals, with each row in the second
table pointing back to the appropriate row in the first table.
What you're essentially looking for is something like
http://www.databaseanswers.org/data_models/contact_management/index.htm

Signature
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no private e-mails, please)
> Im looking for a way to return the information of multiple contacts
> taken on a per company basis for my own custom bulk emailing (mail
[quoted text clipped - 28 lines]
> the information of the 1st, 2nd and 3rd contact in a single record or
> is there another way to do that?
deekaye@gmail.com - 03 Dec 2006 15:35 GMT
Hi Douglas,
I dont think I was very clear.
My data is already in the form you have described. A company table and
a contacts table. There is a foreign key in contacts table pointing to
a company.
My problem is I need to be able to display contact information for each
company like if there are 3 contacts for ABC Co then I need to loop
through and display in a sentence..
Dear 1st contact, 2nd contact and 3rd contact where 1st - 3rd are
fields in the contacts table marking this info about contacts.
Hope that explains.
Nice link btw with the data models.
> Rather than using your approach, it's far better to use two tables.
>
[quoted text clipped - 42 lines]
> > the information of the 1st, 2nd and 3rd contact in a single record or
> > is there another way to do that?
Douglas J. Steele - 03 Dec 2006 16:25 GMT
Sorry! You're talking about concatenating related records. Take a look at
http://www.mvps.org/access/modules/mdl0008.htm at "The Access Web"

Signature
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no private e-mails, please)
> Hi Douglas,
>
[quoted text clipped - 60 lines]
>> > the information of the 1st, 2nd and 3rd contact in a single record or
>> > is there another way to do that?