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

B

BB

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

Clifford Bass

Hi BB,

Use something like this:

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

Clifford Bass
 
Top