<?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: Delta Symbol/Special Character in Proc Report in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Delta-Symbol-Special-Character-in-Proc-Report/m-p/498542#M21757</link>
    <description>&lt;P&gt;Hi:&lt;BR /&gt; The code I posted is my entire code. You do need to establish your ODS ESCAPECHAR, as I show in my first line of code. But everything in my screen shot was produced by the code you see.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When I try using ODS RTF, I get this:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="delta_rtf.png" style="width: 572px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/23496iA69B67B90D404CF3/image-size/large?v=v2&amp;amp;px=999" role="button" title="delta_rtf.png" alt="delta_rtf.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;With this code:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods escapechar='^';

ods rtf file='c:\temp\test_uni.rtf';
proc report data=sashelp.class(obs=3);
title 'this is^{super 1} and then something^{unicode delta}';

column ('Here is a delta^{unicode delta}' name age sex) 
       ('and another^{super 2}' height weight);
run;
ods rtf close;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you run my code and do not see the delta and the superscript in the RTF file, then you need to open a track with Tech Support.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Cynthia&lt;/P&gt;</description>
    <pubDate>Mon, 24 Sep 2018 19:41:36 GMT</pubDate>
    <dc:creator>Cynthia_sas</dc:creator>
    <dc:date>2018-09-24T19:41:36Z</dc:date>
    <item>
      <title>Delta Symbol/Special Character in Proc Report</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Delta-Symbol-Special-Character-in-Proc-Report/m-p/498468#M21754</link>
      <description>&lt;P&gt;Hi, I am trying to figure out how to get the delta symbol and a superscript for one of my column headers to display in my proc report output, but I can't seem to get this to work. This is what I have so far. Any help is greatly appreciated!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;options nodate nonumber center Orientation=landscape&lt;BR /&gt;topmargin=.5in bottommargin=.4in leftmargin=.5in rightmargin=.5in;&lt;BR /&gt;ods listing close;&lt;BR /&gt;protectspecialchars=off;&lt;BR /&gt;ods escapechar='^';&lt;BR /&gt;ods rtf file="&amp;amp;outpath&amp;amp;saveWordDoc..rtf" ;&lt;BR /&gt;title1 j=l font='Courier New' h=8pt "&amp;amp;titlename1 ^n &amp;amp;titlename2 ^n &amp;amp;titlename3" j=r "&amp;amp;sysdate9. &amp;amp;systime";&lt;BR /&gt;title2 j=l font='Courier New' h=8pt "&amp;amp;titleName4";&lt;BR /&gt;footnote j=l font='Courier New' h=8pt "&amp;amp;saveWordDoc..rtf" j=r&amp;nbsp; "Page ^{thispage} of ^{lastpage}" ;&lt;BR /&gt;&lt;BR /&gt;proc report nowd center spanrows missing split='^' data=all&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; list out=test&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;BR /&gt;style(report)=[width=100% frame=void rules=none cellspacing=0 padding=1pt font=('Courier New', 8pt)]&lt;BR /&gt;style(header)=[bordertopcolor=balck bordertopwidth=1&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; borderbottomcolor=black borderbottomwidth=1&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; background=white font=('Courier New', 8pt) textalign=c ]&lt;BR /&gt;style(column)=[font=('Courier New', 8pt)&amp;nbsp; ASIS=ON ] ;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; columns _PB_page vorder vid roworder rowlabel&amp;nbsp; ("p-value^{super 1} LS Means^{unicode delta???} (95% CI)" col_4);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; define _PB_page/group noprint;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Sep 2018 16:44:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Delta-Symbol-Special-Character-in-Proc-Report/m-p/498468#M21754</guid>
      <dc:creator>kmardinian</dc:creator>
      <dc:date>2018-09-24T16:44:08Z</dc:date>
    </item>
    <item>
      <title>Re: Delta Symbol/Special Character in Proc Report</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Delta-Symbol-Special-Character-in-Proc-Report/m-p/498482#M21755</link>
      <description>&lt;P&gt;Hi:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Did you try unicode delta without the ??? -- it seemed to work for me. Just curious.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="unicode_delta.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/23485iFC041C54B738CCF1/image-size/large?v=v2&amp;amp;px=999" role="button" title="unicode_delta.png" alt="unicode_delta.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PS... not sure why you have the protectspecialchars=off; as a statement, you should be getting an error message like this:&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier" color="#FF0000"&gt;ERROR 180-322: Statement is not valid or it is used out of proper order.&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;for that.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cynthia&lt;/P&gt;</description>
      <pubDate>Mon, 24 Sep 2018 17:38:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Delta-Symbol-Special-Character-in-Proc-Report/m-p/498482#M21755</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2018-09-24T17:38:12Z</dc:date>
    </item>
    <item>
      <title>Re: Delta Symbol/Special Character in Proc Report</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Delta-Symbol-Special-Character-in-Proc-Report/m-p/498487#M21756</link>
      <description>&lt;P&gt;Sorry, I put the ??? to show where I was confused on what I should be adding there. I have tried it without the ???, but all it prints is the actual text"unicode delta". Am I supposed to define the unicode before or in my proc report statement? Thank you so much for your help!&lt;/P&gt;</description>
      <pubDate>Mon, 24 Sep 2018 17:44:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Delta-Symbol-Special-Character-in-Proc-Report/m-p/498487#M21756</guid>
      <dc:creator>kmardinian</dc:creator>
      <dc:date>2018-09-24T17:44:56Z</dc:date>
    </item>
    <item>
      <title>Re: Delta Symbol/Special Character in Proc Report</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Delta-Symbol-Special-Character-in-Proc-Report/m-p/498542#M21757</link>
      <description>&lt;P&gt;Hi:&lt;BR /&gt; The code I posted is my entire code. You do need to establish your ODS ESCAPECHAR, as I show in my first line of code. But everything in my screen shot was produced by the code you see.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When I try using ODS RTF, I get this:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="delta_rtf.png" style="width: 572px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/23496iA69B67B90D404CF3/image-size/large?v=v2&amp;amp;px=999" role="button" title="delta_rtf.png" alt="delta_rtf.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;With this code:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods escapechar='^';

ods rtf file='c:\temp\test_uni.rtf';
proc report data=sashelp.class(obs=3);
title 'this is^{super 1} and then something^{unicode delta}';

column ('Here is a delta^{unicode delta}' name age sex) 
       ('and another^{super 2}' height weight);
run;
ods rtf close;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you run my code and do not see the delta and the superscript in the RTF file, then you need to open a track with Tech Support.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Cynthia&lt;/P&gt;</description>
      <pubDate>Mon, 24 Sep 2018 19:41:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Delta-Symbol-Special-Character-in-Proc-Report/m-p/498542#M21757</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2018-09-24T19:41:36Z</dc:date>
    </item>
    <item>
      <title>Re: Delta Symbol/Special Character in Proc Report</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Delta-Symbol-Special-Character-in-Proc-Report/m-p/498554#M21758</link>
      <description>&lt;P&gt;I added the ODS escapechar and&lt;/P&gt;&lt;P&gt;('p-value^{super 1} LS Means^{unicode delta} (95% CI)' col_4);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and it still is only printing "unicode delta" and "super 1"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am not sure what else could be going wrong&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;options nodate nonumber center Orientation=landscape&lt;BR /&gt;topmargin=.5in bottommargin=.4in leftmargin=.5in rightmargin=.5in;&lt;BR /&gt;ods listing close;&lt;BR /&gt;ods escapechar='^';&lt;BR /&gt;ods rtf file="&amp;amp;outpath&amp;amp;saveWordDoc..rtf" ;&lt;BR /&gt;title1 j=l font='Courier New' h=8pt "&amp;amp;titlename1 ^n &amp;amp;titlename2 ^n &amp;amp;titlename3" j=r "&amp;amp;sysdate9. &amp;amp;systime";&lt;BR /&gt;title2 j=l font='Courier New' h=8pt "&amp;amp;titleName4";&lt;BR /&gt;footnote j=l font='Courier New' h=8pt "&amp;amp;saveWordDoc..rtf" j=r&amp;nbsp; "Page ^{thispage} of ^{lastpage}" ;&lt;BR /&gt;&lt;BR /&gt;proc report nowd center spanrows missing split='^' data=all&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; list out=test&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;BR /&gt;style(report)=[width=100% frame=void rules=none cellspacing=0 padding=1pt font=('Courier New', 8pt)]&lt;BR /&gt;style(header)=[bordertopcolor=balck bordertopwidth=1&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; borderbottomcolor=black borderbottomwidth=1&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; background=white font=('Courier New', 8pt) textalign=c ]&lt;BR /&gt;style(column)=[font=('Courier New', 8pt)&amp;nbsp; ASIS=ON ] ;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; columns _PB_page vorder vid roworder rowlabel ('p-value^{super 1} LS Means^{unicode delta} (95% CI)' col_4);&lt;/P&gt;</description>
      <pubDate>Mon, 24 Sep 2018 19:46:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Delta-Symbol-Special-Character-in-Proc-Report/m-p/498554#M21758</guid>
      <dc:creator>kmardinian</dc:creator>
      <dc:date>2018-09-24T19:46:11Z</dc:date>
    </item>
    <item>
      <title>Re: Delta Symbol/Special Character in Proc Report</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Delta-Symbol-Special-Character-in-Proc-Report/m-p/498560#M21760</link>
      <description>Hi:&lt;BR /&gt;  Did you run MY code, exactly as I posted it? If you run MY code and it works, then you need to re-examine your code carefully to find the difference. If you run MY code exactly as I posted it and you do not see the delta or the superscript, then you need to open a track with Tech Support. They can look at ALL of your code and ALL of your data to determine whether it is due to that.&lt;BR /&gt;&lt;BR /&gt;Also, I believe that the {unicode delta} capability was only available starting in SAS 9.2 or possibly 9.3 -- this is also something that you can check with Tech Support.&lt;BR /&gt;&lt;BR /&gt;Cynthia</description>
      <pubDate>Mon, 24 Sep 2018 19:53:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Delta-Symbol-Special-Character-in-Proc-Report/m-p/498560#M21760</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2018-09-24T19:53:39Z</dc:date>
    </item>
    <item>
      <title>Re: Delta Symbol/Special Character in Proc Report</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Delta-Symbol-Special-Character-in-Proc-Report/m-p/498609#M21766</link>
      <description>&lt;P&gt;A very common approach with testing something that "doesn't work" is to strip out as much unrelated code as possible so the only bit shown is actually pertinent.&lt;/P&gt;
&lt;P&gt;Example:&lt;/P&gt;
&lt;PRE&gt;ods escapechar='^';
proc report data=sashelp.class;
   column  ('p-value^{super 1} LS Means^{unicode delta} (95% CI)' weight);
   define weight/display;
run;&lt;/PRE&gt;
&lt;P&gt;Which does display the superscript 1&amp;nbsp;and delta.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then add options one at a time until it "doesn't work" again.&lt;/P&gt;
&lt;P&gt;In this case it is the SPLIT option:&lt;/P&gt;
&lt;PRE&gt;proc report data=sashelp.class    split='^'
;
   columns  ('p-value^{super 1} LS Means^{unicode delta} (95% CI)' weight);
   define weight/display ;
run;&lt;/PRE&gt;
&lt;P&gt;Which duplicates what you describe. SOLUTION: Either do not use the SPLIT option or use a different character and modify the labels to use that character.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What you &lt;STRONG&gt;failed&lt;/STRONG&gt; to describe was that {super 1} and {Unicode delta} appeared at the start of separate lines within the header as the SPLIT character would do.&lt;/P&gt;</description>
      <pubDate>Mon, 24 Sep 2018 22:45:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Delta-Symbol-Special-Character-in-Proc-Report/m-p/498609#M21766</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-09-24T22:45:32Z</dc:date>
    </item>
    <item>
      <title>Re: Delta Symbol/Special Character in Proc Report</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Delta-Symbol-Special-Character-in-Proc-Report/m-p/499275#M21785</link>
      <description>&lt;P&gt;Thank you! It was the split option that was definitely throwing everything off&lt;/P&gt;</description>
      <pubDate>Wed, 26 Sep 2018 21:20:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Delta-Symbol-Special-Character-in-Proc-Report/m-p/499275#M21785</guid>
      <dc:creator>kmardinian</dc:creator>
      <dc:date>2018-09-26T21:20:42Z</dc:date>
    </item>
    <item>
      <title>Re: Delta Symbol/Special Character in Proc Report</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Delta-Symbol-Special-Character-in-Proc-Report/m-p/499278#M21786</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/139341"&gt;@kmardinian&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Thank you! It was the split option that was definitely throwing everything off&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Another possible solution would be a different ESCAPECHAR but that may cause more confusion.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I haven't used much of the SPLIT options recently but used to use * so habitually it took me a minute to realize your split character and escapechar were the same character.&lt;/P&gt;</description>
      <pubDate>Wed, 26 Sep 2018 21:24:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Delta-Symbol-Special-Character-in-Proc-Report/m-p/499278#M21786</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-09-26T21:24:45Z</dc:date>
    </item>
  </channel>
</rss>

