/*example code*/ ods listing close; ods rtf file='D:\W\Code_lib\class.rtf' style=journal3; proc report data=sashelp.class ; column name sex height; define name / display 'Name' style(column)={asis=on cellwidth=2.0 in just=l} flow;; define sex / display 'sex' style(column)={asis=on cellwidth=2.0 in just=l} flow;; define height / display 'height' style(column)={asis=on cellwidth=2.0 in just=l} flow;; run; ods rtf close; ods listing;
question: how to drop the punctuation in the output as below:
the word option of display can resolve this issue to hide this symbol, it has nothing to do with sas code and version
thanks so much. @Kurt_Bremser
When I run this code in University Edition (on a Mac) and view the RTF with LibreOffice, or on our AIX via EG and view it with MS Word, I do not see any extra characters. With which program do you view the RTF? Which SAS version do you have?
the word option of display can resolve this issue to hide this symbol, it has nothing to do with sas code and version
thanks so much. @Kurt_Bremser
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.