<?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: How to output Greek letters in Excel file in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-to-output-Greek-letters-in-Excel-file/m-p/364444#M86444</link>
    <description>Does anyone know why the Greek letters cannot be displayed properly when using proc export to convert an excel file?</description>
    <pubDate>Tue, 06 Jun 2017 02:37:49 GMT</pubDate>
    <dc:creator>JohnChen_TW</dc:creator>
    <dc:date>2017-06-06T02:37:49Z</dc:date>
    <item>
      <title>How to output Greek letters in Excel file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-output-Greek-letters-in-Excel-file/m-p/364234#M86358</link>
      <description>&lt;P&gt;Hi all,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm having an issue&amp;nbsp;that I'd like to display the Greek letters in excel output, but it cannot work with&amp;nbsp;&lt;SPAN&gt;ods escapechar="^"; Why?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;The following is my code.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods escapechar="^";
%let a=^{unicode 03B2};

data want;
length x $20;
x="&amp;amp;a";
run;

proc export data = want
   outfile ="~path\result.xls"
   dbms = excel replace;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;It's always shown as ^{unicode 03B2} in excel file...but it can work properly when outputs as RTF file...why?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods escapechar="^";
%let a=^{unicode 03B2};

data test;
length x $20;
x="&amp;amp;a";
run;

proc print data=test; run;
ods listing close;
ods rtf file="~path\report.rtf";
proc report data = test nowindows;
    title &amp;amp;a;
    define x/"name &amp;amp;a" width=20;
run;
ods rtf close;
ods listing;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Does anyone have the&amp;nbsp;suggestion?&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;JC&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Jun 2017 10:24:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-output-Greek-letters-in-Excel-file/m-p/364234#M86358</guid>
      <dc:creator>JohnChen_TW</dc:creator>
      <dc:date>2017-06-05T10:24:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to output Greek letters in Excel file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-output-Greek-letters-in-Excel-file/m-p/364287#M86380</link>
      <description>&lt;P&gt;It will work if you use ods excel. e.g.:&lt;/P&gt;
&lt;PRE&gt;ods excel file="/folders/myfolders/testit.xls" ;
proc print data=want noobs;
run;
ods excel close;
&lt;/PRE&gt;
&lt;P&gt;Art, CEO, AnalystFinder.com&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Jun 2017 14:57:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-output-Greek-letters-in-Excel-file/m-p/364287#M86380</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2017-06-05T14:57:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to output Greek letters in Excel file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-output-Greek-letters-in-Excel-file/m-p/364441#M86443</link>
      <description>It seems unable to work in SAS 9.3...</description>
      <pubDate>Tue, 06 Jun 2017 02:28:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-output-Greek-letters-in-Excel-file/m-p/364441#M86443</guid>
      <dc:creator>JohnChen_TW</dc:creator>
      <dc:date>2017-06-06T02:28:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to output Greek letters in Excel file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-output-Greek-letters-in-Excel-file/m-p/364444#M86444</link>
      <description>Does anyone know why the Greek letters cannot be displayed properly when using proc export to convert an excel file?</description>
      <pubDate>Tue, 06 Jun 2017 02:37:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-output-Greek-letters-in-Excel-file/m-p/364444#M86444</guid>
      <dc:creator>JohnChen_TW</dc:creator>
      <dc:date>2017-06-06T02:37:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to output Greek letters in Excel file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-output-Greek-letters-in-Excel-file/m-p/364455#M86446</link>
      <description>&lt;P&gt;I doubt proc export has any notion of what an escape character is.&lt;/P&gt;</description>
      <pubDate>Tue, 06 Jun 2017 05:09:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-output-Greek-letters-in-Excel-file/m-p/364455#M86446</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2017-06-06T05:09:32Z</dc:date>
    </item>
  </channel>
</rss>

