Multiple Word merging from Access

G

Guest

I have a system set up for single merging of data (many thanks to Albert)

What I am looking for now is the methodology to allow me merge a list of addresses onto a standard word template

What I have at the moment is a form with a list of addresses with a check box and I would like to merge those records (with the check box highlighted) to this Word Template.

Any ideas

Perry Kerr
 
A

Albert D. Kallal

You can use my merge example. The code behind a button could be:


dim strSql as string

strSql = "select * from tblCustomers where MailToCheckBox = True order by
LastName"

MergeAllWord (strSql)

The above is all you need. Give it a try. So, my example merge system is
designed both for single records, or any sql selection you can dream up.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top