<?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: Creating XLS file with no SAS variable name in Row 1 in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Creating-XLS-file-with-no-SAS-variable-name-in-Row-1/m-p/156837#M30627</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Proc Report needs a boost. Here's the PROC REPORT/NOHEADER method.&lt;/P&gt;&lt;P&gt;Cynthia&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;ods csv file='c:\temp\noheader.csv';&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;proc report data=sashelp.class nowd noheader;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;run;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;ods csv close;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 18 Dec 2014 21:35:33 GMT</pubDate>
    <dc:creator>Cynthia_sas</dc:creator>
    <dc:date>2014-12-18T21:35:33Z</dc:date>
    <item>
      <title>Creating XLS file with no SAS variable name in Row 1</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Creating-XLS-file-with-no-SAS-variable-name-in-Row-1/m-p/156833#M30623</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I want to take a SAS data set and create an XLS or XLSX file where the first row is not the SAS variable names. In other words, I want row 1 in Excel to be the first row of data in the SAS data set.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I do not want an XML file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I do this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Dec 2014 19:46:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Creating-XLS-file-with-no-SAS-variable-name-in-Row-1/m-p/156833#M30623</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2014-12-18T19:46:33Z</dc:date>
    </item>
    <item>
      <title>Re: Creating XLS file with no SAS variable name in Row 1</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Creating-XLS-file-with-no-SAS-variable-name-in-Row-1/m-p/156834#M30624</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here is one way: &lt;A href="http://www.sascommunity.org/wiki/A_Poor/Rich_SAS_Users_Proc_Export" title="http://www.sascommunity.org/wiki/A_Poor/Rich_SAS_Users_Proc_Export"&gt;A Poor/Rich SAS Users Proc Export - sasCommunity&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Dec 2014 20:00:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Creating-XLS-file-with-no-SAS-variable-name-in-Row-1/m-p/156834#M30624</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2014-12-18T20:00:00Z</dc:date>
    </item>
    <item>
      <title>Re: Creating XLS file with no SAS variable name in Row 1</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Creating-XLS-file-with-no-SAS-variable-name-in-Row-1/m-p/156835#M30625</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well that was way too easy! Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Dec 2014 20:09:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Creating-XLS-file-with-no-SAS-variable-name-in-Row-1/m-p/156835#M30625</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2014-12-18T20:09:54Z</dc:date>
    </item>
    <item>
      <title>Re: Creating XLS file with no SAS variable name in Row 1</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Creating-XLS-file-with-no-SAS-variable-name-in-Row-1/m-p/156836#M30626</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'll be sure to make it more difficult next time!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Dec 2014 20:22:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Creating-XLS-file-with-no-SAS-variable-name-in-Row-1/m-p/156836#M30626</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2014-12-18T20:22:01Z</dc:date>
    </item>
    <item>
      <title>Re: Creating XLS file with no SAS variable name in Row 1</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Creating-XLS-file-with-no-SAS-variable-name-in-Row-1/m-p/156837#M30627</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Proc Report needs a boost. Here's the PROC REPORT/NOHEADER method.&lt;/P&gt;&lt;P&gt;Cynthia&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;ods csv file='c:\temp\noheader.csv';&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;proc report data=sashelp.class nowd noheader;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;run;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;ods csv close;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Dec 2014 21:35:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Creating-XLS-file-with-no-SAS-variable-name-in-Row-1/m-p/156837#M30627</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2014-12-18T21:35:33Z</dc:date>
    </item>
    <item>
      <title>Re: Creating XLS file with no SAS variable name in Row 1</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Creating-XLS-file-with-no-SAS-variable-name-in-Row-1/m-p/156838#M30628</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;proc export data=sashelp.class outfile='c:\temp\class.xls' dbms=xls replace;&lt;/P&gt;&lt;P&gt; putnames=no;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Dec 2014 13:24:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Creating-XLS-file-with-no-SAS-variable-name-in-Row-1/m-p/156838#M30628</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2014-12-19T13:24:05Z</dc:date>
    </item>
    <item>
      <title>Re: Creating XLS file with no SAS variable name in Row 1</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Creating-XLS-file-with-no-SAS-variable-name-in-Row-1/m-p/156839#M30629</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Okay &lt;A __default_attr="645292" __jive_macro_name="user" class="jive_macro jive_macro_user" data-objecttype="3" href="https://communities.sas.com/"&gt;&lt;/A&gt;, that's a great answer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I tried this before posting the original question, I used dbms=excel, and I got an error. Obviously, dbms=xls works.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone explain the difference?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Dec 2014 13:32:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Creating-XLS-file-with-no-SAS-variable-name-in-Row-1/m-p/156839#M30629</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2014-12-19T13:32:01Z</dc:date>
    </item>
    <item>
      <title>Re: Creating XLS file with no SAS variable name in Row 1</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Creating-XLS-file-with-no-SAS-variable-name-in-Row-1/m-p/156840#M30630</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In one short link: &lt;A href="http://support.sas.com/documentation/cdl/en/acpcref/63184/HTML/default/viewer.htm#a003103761.htm" title="http://support.sas.com/documentation/cdl/en/acpcref/63184/HTML/default/viewer.htm#a003103761.htm"&gt;SAS/ACCESS(R) 9.2 Interface to PC Files: Reference, Second Edition&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Dec 2014 13:48:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Creating-XLS-file-with-no-SAS-variable-name-in-Row-1/m-p/156840#M30630</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2014-12-19T13:48:19Z</dc:date>
    </item>
    <item>
      <title>Re: Creating XLS file with no SAS variable name in Row 1</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Creating-XLS-file-with-no-SAS-variable-name-in-Row-1/m-p/156841#M30631</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes. They are different engine. Excel engine can handle both ascii( english character) - single byte&amp;nbsp; stored and DBMS - double byte&amp;nbsp; stored ( like Chinese Korea Japanese) . but XLS only can handle&amp;nbsp; single byte&amp;nbsp; stored character( english ) . since you are from U.S , that doesn't matter if using excel or xls . But for me from China , only can use Excel engine. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Xia Keshan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Dec 2014 13:57:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Creating-XLS-file-with-no-SAS-variable-name-in-Row-1/m-p/156841#M30631</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2014-12-19T13:57:01Z</dc:date>
    </item>
  </channel>
</rss>

