Form to a letter

glasgowlad1999

Registered User.
Local time
Today, 18:34
Joined
Jun 17, 2013
Messages
27
Hi There,

I was wondering if you can help. I need to take data from a form with many sub-forms. The letter has to be in word to allow for edits. Its an appointment letter, however is has a table with 1-100 lines.

I need to be able to add the name, address, date of appointment and table with however many lines are needed for that client.

I can get the table to work by itself or the name, address and date of appointment but not both.

Has anyone done this before with access?

Thanks,
Thomas
 
My Access 2007 has the option to save a report as .rtf (rich text format).
You can open and edit this file with Word. Also you can save in .doc (or docx) format.

DoCmd.OutputTo acOutputReport, "ReportName", "RichTextFormat(*.rtf)", , True
 
... and not only reports
See Access help files for OutputTo command.
 
But how do I get it to show a single business name and address with an inserted table with many lines of data?
 
This is another question and, maybe, is better to start a new thread.

The short answer is: by filtering your data.
The long answer depend from the setup of your DB, and is impossible for me to know at this time "how to".
 

Users who are viewing this thread

Back
Top Bottom