information included on mailing labels

G

Guest

I am trying to print mailing labels using the label wizard in access, but I
do not want the labels to include every name on my list. Can I choose who
gets put on the mailing list without making a whole new list? If yes, HOW?
 
F

fredg

I am trying to print mailing labels using the label wizard in access, but I
do not want the labels to include every name on my list. Can I choose who
gets put on the mailing list without making a whole new list? If yes, HOW?

Add a check box field to the table.
Name it "Selected".

Add the field to your form.

Manually place a check mark in each record you wish to print.

Code a Command button's click event
DoCmd.OpenReport "LabelReport",acViewPreview, , "[Selected] = -1"
 

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