<?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: sas proc export into excel in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/sas-proc-export-into-excel/m-p/609560#M177486</link>
    <description>&lt;P&gt;It may help to show the code you are using to "export".&lt;/P&gt;
&lt;P&gt;Since you mention Title it is almost certain that you are not using Proc Export to export data. So you are creating output of some sort and different options come into play depending on how you are creating that output.&lt;/P&gt;</description>
    <pubDate>Wed, 04 Dec 2019 22:48:26 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2019-12-04T22:48:26Z</dc:date>
    <item>
      <title>sas proc export into excel</title>
      <link>https://communities.sas.com/t5/SAS-Programming/sas-proc-export-into-excel/m-p/609306#M177396</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;
&lt;P&gt;When I export sas table (or print) into excel there are 2 problems that I wan to solve:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1-I want that the title will be located on multiple cells (merge cells) and not in one cell.&lt;/P&gt;
&lt;P&gt;2-I want that the sheet will be right to left direction and not left to right (please note that my excel is defined by right to left but when i export&amp;nbsp; table from sas into excel then the sheet is left to right and not right to left)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;thank you&lt;/P&gt;
&lt;P&gt;Joe&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Dec 2019 09:01:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/sas-proc-export-into-excel/m-p/609306#M177396</guid>
      <dc:creator>Ronein</dc:creator>
      <dc:date>2019-12-04T09:01:58Z</dc:date>
    </item>
    <item>
      <title>Re: sas proc export into excel</title>
      <link>https://communities.sas.com/t5/SAS-Programming/sas-proc-export-into-excel/m-p/609307#M177397</link>
      <description>&lt;P&gt;I found solution to first problem by using justify=C&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;title&amp;nbsp; justify=C&amp;nbsp; &amp;nbsp; 'xxxxxx';&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Now still need solution to 2nd problem&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Dec 2019 09:07:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/sas-proc-export-into-excel/m-p/609307#M177397</guid>
      <dc:creator>Ronein</dc:creator>
      <dc:date>2019-12-04T09:07:56Z</dc:date>
    </item>
    <item>
      <title>Re: sas proc export into excel</title>
      <link>https://communities.sas.com/t5/SAS-Programming/sas-proc-export-into-excel/m-p/609389#M177419</link>
      <description>&lt;P&gt;I might not understand what you need but, if you only want to reverse the order of your variables, the following should work:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql noprint;
  select name into :names separated by ' '
    from dictionary.columns
      where libname='SASHELP' and
            memname='CLASS'
        order by varnum  descending
  ;
quit;

data need;
  retain &amp;amp;names.;
  set sashelp.class;
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Art, CEO, AnalystFinder.com&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Dec 2019 14:08:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/sas-proc-export-into-excel/m-p/609389#M177419</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2019-12-04T14:08:08Z</dc:date>
    </item>
    <item>
      <title>Re: sas proc export into excel</title>
      <link>https://communities.sas.com/t5/SAS-Programming/sas-proc-export-into-excel/m-p/609560#M177486</link>
      <description>&lt;P&gt;It may help to show the code you are using to "export".&lt;/P&gt;
&lt;P&gt;Since you mention Title it is almost certain that you are not using Proc Export to export data. So you are creating output of some sort and different options come into play depending on how you are creating that output.&lt;/P&gt;</description>
      <pubDate>Wed, 04 Dec 2019 22:48:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/sas-proc-export-into-excel/m-p/609560#M177486</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-12-04T22:48:26Z</dc:date>
    </item>
  </channel>
</rss>

