Well The code I have is only for text, it does not convert graphics at all not even lines. But as my report is simple it doesn't matter, If you need the lines and pictures etc then you could save it as a snapshot file (free image software by Microsoft), but then this is un editable. Ill paste both lines below. All this does is take the report and save it as a word document. If you have a specific template that you want to imput data into then there is code to do that somewhere on the forum.
If you want both text and pictures to be editabale, many people have generally recommended this site (I haven't used it yet so I don't know how it works),give it a try it might work!
The code to convert a report into a text only word document is....
DoCmd.OutputTo acReport, "Report Name", "RichTextFormat(*.rtf)", "C:\WINDOWS\FileNameYouWantToSaveAs.doc", True, ""
'the true is whether you want to view the picture after svaing
'To save as a Snapshot Viewer File...
DoCmd.OutputTo acReport, "ReportName",acFormatSNP, "C:\WINDOWS\FileNameYouWantToSaveAs.snp", False, ""
Hope this helps, If not let me know
Cheers
Sam