Prev: proc report - general strategy - rows and conditional formatting
Next: Need to find a value that can make the equation's value = 0 like Solver in Excel
From: paulasims2004 on 9 Jul 2010 15:27 Hi there, I am generating hundreds of documents with output in Word so that staff can add comments. However, in some cases people are having issues saving and updating. We use Office 2007 but my ODS RTF statements save to .doc files. Should I change the code to .docx? Thanks for the help. Paula
From: Lou on 9 Jul 2010 20:11
<paulasims2004(a)hotmail.com> wrote in message news:b4030c23-0b12-4be6-bd90-06dc98152711(a)a30g2000yqn.googlegroups.com... > Hi there, > I am generating hundreds of documents with output in Word so that > staff can add comments. However, in some cases people are having > issues saving and updating. We use Office 2007 but my ODS RTF > statements save to .doc files. Should I change the code to .docx? > If you're using ODS to the RTF destination, you "should" use an .rtf extension. Instead of ODS RTF FILE = "some-file-name.doc" style = some-style-name; use ODS RTF FILE = "some-file-name.rtf" style = some-style-name; |