<?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>dianalves Tracker</title>
    <link>https://communities.sas.com/kntur85557/tracker</link>
    <description>dianalves Tracker</description>
    <pubDate>Sat, 23 May 2026 04:30:34 GMT</pubDate>
    <dc:date>2026-05-23T04:30:34Z</dc:date>
    <item>
      <title>Re: How to export from SAS to Excel?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-export-from-SAS-to-Excel/m-p/129047#M10584</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have ran this code but nothing, neither give error!I'm not ADMIN and perhaps I have troubles because of that. I'll try all option you gave me. Thank you a lot, I'll share all steps &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.sas.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Sep 2013 09:45:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-export-from-SAS-to-Excel/m-p/129047#M10584</guid>
      <dc:creator>dianalves</dc:creator>
      <dc:date>2013-09-06T09:45:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to export from SAS to Excel?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-export-from-SAS-to-Excel/m-p/129042#M10579</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Chris,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have EG 1.4 and SAS 9.132.0.0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ODS TAGSETS.EXCELXP&lt;/P&gt;&lt;P&gt;file='D:\Documents and Settings\p057132\Desktop\regression.xls'&lt;/P&gt;&lt;P&gt;STYLE=minimal&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;proc reg data = WORK.QUERY145;&lt;/P&gt;&lt;P&gt;&amp;nbsp; model log_yt = log_yt_m1 log_yt_m2;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;P&gt;ods tagsets.excelxp close;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;P&gt;ods tagsets.excelxp close;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It creates a file in SAS ( I just see it in Project Explorer), with "/SASSoft/MinerGuide/Lev1/SASMain/D:\Documents and Settings\p057132\Desktop\test.xml" extension. I can not open it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ods csv body="D:\Documents and Settings\p057132\Desktop\regression.csv";&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; proc print data=WORK.QUERY145;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; ods csv close;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It creates a csv file in SAS like above and not works with xlm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In reality I would like to export the database to specifique folder in SAS server but is has to be in xls or csv (rather).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Sep 2013 17:46:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-export-from-SAS-to-Excel/m-p/129042#M10579</guid>
      <dc:creator>dianalves</dc:creator>
      <dc:date>2013-09-05T17:46:19Z</dc:date>
    </item>
    <item>
      <title>How to export from SAS to Excel?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-export-from-SAS-to-Excel/m-p/129038#M10575</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.sas.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm a new user of SAS Guide and need a little help.&lt;/P&gt;&lt;P&gt;My problem: I want to export a table from SAS to Excel with code. I have tried differente forms but nothing works. I read something about this in forum and someone said that is need a license to export, this is true?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried this forms:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc export &lt;/P&gt;&lt;P&gt;&amp;nbsp; data=work.impw &lt;/P&gt;&lt;P&gt;&amp;nbsp; dbms=xls&lt;/P&gt;&lt;P&gt;&amp;nbsp; outfile="D:\Documents and Settings\p057132\Desktop\back.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;Here, nothing happens!&lt;/P&gt;&lt;P&gt;___&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;__________//______________&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ods Tagsets.ExcelXP file='D:\Documents and Settings\p057132\Desktop\test.xls'; &lt;/P&gt;&lt;P&gt;title 'Listing of Class data'; &lt;/P&gt;&lt;P&gt;proc print data=work.back; &lt;/P&gt;&lt;P&gt;run; &lt;/P&gt;&lt;P&gt;ods Tagsets.ExcelXP close;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gives a strange output, I can't open it&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;_________________________-//___________________&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tried other ones. I have a Enterprise Guide 4 version.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope you can help me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Diana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Sep 2013 13:30:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-export-from-SAS-to-Excel/m-p/129038#M10575</guid>
      <dc:creator>dianalves</dc:creator>
      <dc:date>2013-09-04T13:30:03Z</dc:date>
    </item>
  </channel>
</rss>

