Output to

  • Thread starter Thread starter Robert Gillard
  • Start date Start date
R

Robert Gillard

In the macro Output to, I want to send a report to

C:\my documents\work\[form]![from]![post].rtf

using information on my form to name the file but
the above saves the file as exactly as seen above.

Can anybody please tell me how I should detail the macro

With thanks

Bob
 
Use an expression as the filename argument:

="C:\my documents\work\" & [forms]![from]![post] & ".rtf"
 
Back
Top