Hi all This question becoming more common for those who work in the Pharmaceutical Industry. There are a number of papers on this topic: http://www2.sas.com/proceedings/sugi31/066-31.pdf http://www.pharmasug.org/download/papers/CC18.pdf http://www.pharmasug.org/cd/papers/TT/TT13.pdf I disagree Cynthia statement's above - "almost impossible to read the RTF file directly with SAS". In fact extracting an RTF table into SAS is quite simple. I have written a paper about this. http://www.lexjansen.com/phuse/2008/po/po03.pdf That is by using an RTF regular expression you can easily strip out the RTF control words. Also Cynthia, in clinical trial reporting it is very typical that one programmer do the table and another QC it. And because the table could be re-ran many times, programmers preferred a programmatic way of doing the QC (refer to Hagondoorn paper above) Tom suggestion to save the RTF as text then read into SAS is really not appropriate for this purpose. Because separating the columns into variables would be a challenge!! What you want is column1 go to var1 and column2 to var2 etc. So if the file is in text it is not easy to identify where the columns separation are. Another alternative is to copy and paste into Excel then use DDE. This could be done automatically (ie on the fly) I believe. I have not looked in depth into this. The reason is you need PC SAS for this method and many bigger pharmaceutical companies uses UNIX SAS. As for the clipboard I have not tried this but it seem the same as copy and save as text method. If it is then you would have the same issue. Regards Duong
... View more