Hi, is it possible put 'invisible' character elements in proc report?
Well, ods escapechar tells SAS what character(s) to use to indicate an escape code, so you don't want ~w as the characters only the ~:
ods escapechar="~";
Note how I don't code all in uppercase.
Now I don;t know where your ~w is coming in, is it in the data, if so that change should work (and assuming w is a real code). If not post some full code so can see. Also, one option to remember on proc report is asis, which if you have spaces will show them, rather than trimming:
define var / style=(asis=on);
firstly, use ods escapechar="~"; then ~_ stands for a white blank .
Hi, the ESCAPECHAR sequence of ESCAPECHAR+underscore is an older form of syntax that was first introduced in SAS 8.3 to insert a "non-breaking space" -- not necessarily the same as a "white space".
The newer syntax is
ESCAPECHAR+{NBSPACE 1}.
So if Escapechar is defined at ~, then instead of ~_ you would have
~{NBSPACE 1} as shown here: http://go.documentation.sas.com/?docsetId=odsug&docsetTarget=p11xia2ltavr8ln17srq8vn4rnqc.htm&docset...
cynthia
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
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.