How print just one label?

Z

zena

Can anyone tell me how I would print just one label from a table? I just
need to print a label for one record.
-zena
 
J

John Vinson

Can anyone tell me how I would print just one label from a table? I just
need to print a label for one record.
-zena

Several ways. Probably the best for the user would be to construct an
unbound Form (frmCriteria) with a control (combo box, text box, or
whatever; let's call it cboCrit) which will let the user select some
unique field identifying which label is to be printed. Create a Query
using

=[Forms]![frmCriteria]![cboCrit]

as a criterion. Base your Report (the label report, perhaps using the
report wizard to build it) on this query. You can even put a button on
frmCriteria to launch the label report.
 

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