<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Is it possible put 'invisible' character elements in proc report? in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Is-it-possible-put-invisible-character-elements-in-proc-report/m-p/406970#M19668</link>
    <description>Thank you! I can review thoroughly a little bit later on, sorry for that.</description>
    <pubDate>Tue, 24 Oct 2017 15:00:50 GMT</pubDate>
    <dc:creator>DmytroYermak</dc:creator>
    <dc:date>2017-10-24T15:00:50Z</dc:date>
    <item>
      <title>Is it possible put 'invisible' character elements in proc report?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Is-it-possible-put-invisible-character-elements-in-proc-report/m-p/406865#M19664</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi, is it possible put 'invisible' character elements in proc report?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 06 Mar 2018 07:32:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Is-it-possible-put-invisible-character-elements-in-proc-report/m-p/406865#M19664</guid>
      <dc:creator>DmytroYermak</dc:creator>
      <dc:date>2018-03-06T07:32:18Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible put 'invisible' character elements in proc report?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Is-it-possible-put-invisible-character-elements-in-proc-report/m-p/406874#M19666</link>
      <description>&lt;P&gt;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 ~:&lt;/P&gt;
&lt;PRE&gt;ods escapechar="~";&lt;/PRE&gt;
&lt;P&gt;Note how I don't code all in uppercase.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;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).&amp;nbsp; If not post some full code so can see.&amp;nbsp; Also, one option to remember on proc report is asis, which if you have spaces will show them, rather than trimming:&lt;/P&gt;
&lt;PRE&gt;define var / style=(asis=on);
&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 24 Oct 2017 09:57:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Is-it-possible-put-invisible-character-elements-in-proc-report/m-p/406874#M19666</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2017-10-24T09:57:47Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible put 'invisible' character elements in proc report?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Is-it-possible-put-invisible-character-elements-in-proc-report/m-p/406923#M19667</link>
      <description>&lt;PRE&gt;
firstly, use
ods escapechar="~";

then  ~_  stands for a white blank .




&lt;/PRE&gt;</description>
      <pubDate>Tue, 24 Oct 2017 12:59:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Is-it-possible-put-invisible-character-elements-in-proc-report/m-p/406923#M19667</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2017-10-24T12:59:50Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible put 'invisible' character elements in proc report?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Is-it-possible-put-invisible-character-elements-in-proc-report/m-p/406970#M19668</link>
      <description>Thank you! I can review thoroughly a little bit later on, sorry for that.</description>
      <pubDate>Tue, 24 Oct 2017 15:00:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Is-it-possible-put-invisible-character-elements-in-proc-report/m-p/406970#M19668</guid>
      <dc:creator>DmytroYermak</dc:creator>
      <dc:date>2017-10-24T15:00:50Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible put 'invisible' character elements in proc report?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Is-it-possible-put-invisible-character-elements-in-proc-report/m-p/407018#M19676</link>
      <description>&lt;P&gt;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". &lt;BR /&gt;&lt;BR /&gt; The newer syntax is &lt;BR /&gt;ESCAPECHAR+{NBSPACE 1}. &lt;BR /&gt;&lt;BR /&gt; So if Escapechar is defined at ~, then instead of ~_ you would have&lt;BR /&gt;~{NBSPACE 1} as shown here: &lt;A href="http://go.documentation.sas.com/?docsetId=odsug&amp;amp;docsetTarget=p11xia2ltavr8ln17srq8vn4rnqc.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en#n1nna2hvmgacyfn1vyflvzv2mo6u" target="_blank"&gt;http://go.documentation.sas.com/?docsetId=odsug&amp;amp;docsetTarget=p11xia2ltavr8ln17srq8vn4rnqc.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en#n1nna2hvmgacyfn1vyflvzv2mo6u&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;cynthia&lt;/P&gt;</description>
      <pubDate>Wed, 25 Oct 2017 19:34:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Is-it-possible-put-invisible-character-elements-in-proc-report/m-p/407018#M19676</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2017-10-25T19:34:04Z</dc:date>
    </item>
  </channel>
</rss>

