Send Macro - Need to add field from report/form to the subject lin

Z

Zburnsie

How do I add a field from the report/form to the subject line of a send
macro?
 
S

Steve Schapel

Zburnsie,

You can't refer to the value of a report field. You can with a control
on the current record of an open form, though. Set the Subject argument
of the SendObject action like this...
="blabla" & [NameOfField] & " something else"
 
Top