<?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 Export to Excel in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Export-to-Excel/m-p/175031#M13439</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good afternoon,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to export from SAS to Excel. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried with the proc export but it changed the format and it did not show the column names.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc export &lt;/P&gt;&lt;P&gt;&amp;nbsp; data=WORK.xxx&lt;/P&gt;&lt;P&gt;&amp;nbsp; dbms=xls&lt;/P&gt;&lt;P&gt;&amp;nbsp; outfile="xxx.xls" &lt;/P&gt;&lt;P&gt;&amp;nbsp; replace;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I export?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 14 Feb 2014 18:42:36 GMT</pubDate>
    <dc:creator>Lopes</dc:creator>
    <dc:date>2014-02-14T18:42:36Z</dc:date>
    <item>
      <title>Export to Excel</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Export-to-Excel/m-p/175031#M13439</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good afternoon,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to export from SAS to Excel. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried with the proc export but it changed the format and it did not show the column names.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc export &lt;/P&gt;&lt;P&gt;&amp;nbsp; data=WORK.xxx&lt;/P&gt;&lt;P&gt;&amp;nbsp; dbms=xls&lt;/P&gt;&lt;P&gt;&amp;nbsp; outfile="xxx.xls" &lt;/P&gt;&lt;P&gt;&amp;nbsp; replace;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I export?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Feb 2014 18:42:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Export-to-Excel/m-p/175031#M13439</guid>
      <dc:creator>Lopes</dc:creator>
      <dc:date>2014-02-14T18:42:36Z</dc:date>
    </item>
    <item>
      <title>Re: Export to Excel</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Export-to-Excel/m-p/175032#M13440</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;since you are in the EGuide GUI, you can just export using file --&amp;gt; export.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Feb 2014 19:56:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Export-to-Excel/m-p/175032#M13440</guid>
      <dc:creator>Doc_Duke</dc:creator>
      <dc:date>2014-02-14T19:56:50Z</dc:date>
    </item>
    <item>
      <title>Re: Export to Excel</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Export-to-Excel/m-p/175033#M13441</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Insert "label" into the code before replace, this will export the labelled column names from SAS into excel. Mind you if you put labels onto the columns in SAS ie rather than UID you have the label "Unique ID variable", "Unique ID variable" is what will appear in Excel.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc export &lt;/P&gt;&lt;P&gt;&amp;nbsp; data=WORK.xxx&lt;/P&gt;&lt;P&gt;&amp;nbsp; dbms=xls&lt;/P&gt;&lt;P&gt;&amp;nbsp; outfile="xxx.xls" &lt;/P&gt;&lt;P&gt;&amp;nbsp; label&lt;/P&gt;&lt;P&gt;&amp;nbsp; replace;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you have variable labels and wanted the SAS variable name to actually be output you could put this before your proc export statement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc datasets lib=work memtype=data;&lt;/P&gt;&lt;P&gt;&amp;nbsp; modify xxx; &lt;/P&gt;&lt;P&gt;&amp;nbsp; attrib _all_ label=' '; &lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 15 Feb 2014 15:42:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Export-to-Excel/m-p/175033#M13441</guid>
      <dc:creator>overmar</dc:creator>
      <dc:date>2014-02-15T15:42:14Z</dc:date>
    </item>
    <item>
      <title>Re: Export to Excel</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Export-to-Excel/m-p/175034#M13442</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;export it as in cvs format and then to excel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 16 Feb 2014 04:19:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Export-to-Excel/m-p/175034#M13442</guid>
      <dc:creator>NK</dc:creator>
      <dc:date>2014-02-16T04:19:38Z</dc:date>
    </item>
  </channel>
</rss>

