MACRO field in email

  • Thread starter Thread starter Rpettis31
  • Start date Start date
R

Rpettis31

I am struggling with just sending an email with the message with the ID number.
I have the macro for open to send object I would like to add the Issue Id in
the message.

Issue (ID) has been created.

I am using the macro dialog box in access rather than vb.

Thanks
Robert
 
Robert,

I assume the macro will be run from a n event on a form, and that the
form contains an ID textbox or other control?

In the 'Message Text' argument of the SendObject action, put like this:
="Issue " & [ID] & " has been created."
 
Back
Top