How embed form field data in subject or message text of a Send Object action?

  • Thread starter Thread starter SteveL
  • Start date Start date
S

SteveL

I have a macro which includes a send object action. Also
have a form which the user enters a value into. I want
to somehow embed that entered data into either the
Subject line or the Message Text of the e-mail message.

Can this be done? If so, can someone tell me how?

Any help much appreciated.

--Steve
 
Steve,

In the applicable arguments of the SendObject action in your macro, put
the equivalent of...
=[NameOfTheTextboxOnYourForm]
.... if the macro is triggered from an event on the form, or...
=[Forms]![NameOfForm]![NameOfTextbox]
.... if it is on another form.
 
Back
Top