Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Print one field of selected record

Status
Not open for further replies.

MisterC

IS-IT--Management
Apr 19, 2001
501
US
My table has a memo field. I have a form that displays the table's records individually.
I want to put a button on the form that will print just the current record's memo field. (Not the full form or whole record...)
Can anyone help me with that?

Thanks!
 
I think the easiest thing to do would be to create a report with the memo field and open it with a Where, for example:
DoCmd.OpenReport rptMemo, acViewNormal, , "ID=" & Me.ID
 
Glad you got it.

I should have included quotation marks:
DoCmd.OpenReport "rptMemo", acViewNormal, , "ID=" & Me.ID
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top