Multiple Word merging from Access

  • Thread starter Thread starter Guest
  • Start date Start date
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
 
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.
 
Back
Top