How do I select specific record to print on a pre-formatted label

  • Thread starter Thread starter BB
  • Start date Start date
B

BB

I need to use the command button to instruct a print of the existing record.
How do I go about doing this?
 
Hi BB,

Use something like this:

DoCmd.OpenReport "rptMyReport", , , "where [RECORD_ID] = " &
[txtRECORD_ID]

Clifford Bass
 
Back
Top