I have created labels to print from my database so that we can scan a barcode to access a specific computer. I am trying to figure out how to print just a single label instead of every label for every employee. Anyone know of how to do this?
I have created labels to print from my database so that we can scan a barcode to access a specific computer. I am trying to figure out how to print just a single label instead of every label for every employee. Anyone know of how to do this?
Have the report open just the 1 record:
docmd.OpenReport "r1Label",acViewPreview ,,"[clientID]=" & forms!frmRpts!txtID
Thanks ranman. Got it.