<?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: export data set to Excel but NO headers pleazze in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/export-data-set-to-Excel-but-NO-headers-pleazze/m-p/39358#M7951</link>
    <description>Hi:&lt;BR /&gt;
  Are you willing to use ODS??? PROC REPORT has a NOHEADER option that will get rid of your column headers. This is a quick way to achieve what you want.&lt;BR /&gt;
 &lt;BR /&gt;
cynthia&lt;BR /&gt;
[pre]&lt;BR /&gt;
ods csv file='c:\temp\nohead.csv';&lt;BR /&gt;
              &lt;BR /&gt;
proc report data=sashelp.class nowd noheader;&lt;BR /&gt;
column name sex age height weight;&lt;BR /&gt;
run;&lt;BR /&gt;
                 &lt;BR /&gt;
ods csv close;&lt;BR /&gt;
[/pre]</description>
    <pubDate>Wed, 24 Nov 2010 16:15:23 GMT</pubDate>
    <dc:creator>Cynthia_sas</dc:creator>
    <dc:date>2010-11-24T16:15:23Z</dc:date>
    <item>
      <title>export data set to Excel but NO headers pleazze</title>
      <link>https://communities.sas.com/t5/SAS-Programming/export-data-set-to-Excel-but-NO-headers-pleazze/m-p/39357#M7950</link>
      <description>hi all,&lt;BR /&gt;
proc EXPORT,  LIBNAME engine to Excel ALL fine but I do not want headers in my sheet!!&lt;BR /&gt;
Any ideas ??&lt;BR /&gt;
&lt;BR /&gt;
Regards,&lt;BR /&gt;
Herman</description>
      <pubDate>Wed, 24 Nov 2010 16:11:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/export-data-set-to-Excel-but-NO-headers-pleazze/m-p/39357#M7950</guid>
      <dc:creator>Jaheuk</dc:creator>
      <dc:date>2010-11-24T16:11:44Z</dc:date>
    </item>
    <item>
      <title>Re: export data set to Excel but NO headers pleazze</title>
      <link>https://communities.sas.com/t5/SAS-Programming/export-data-set-to-Excel-but-NO-headers-pleazze/m-p/39358#M7951</link>
      <description>Hi:&lt;BR /&gt;
  Are you willing to use ODS??? PROC REPORT has a NOHEADER option that will get rid of your column headers. This is a quick way to achieve what you want.&lt;BR /&gt;
 &lt;BR /&gt;
cynthia&lt;BR /&gt;
[pre]&lt;BR /&gt;
ods csv file='c:\temp\nohead.csv';&lt;BR /&gt;
              &lt;BR /&gt;
proc report data=sashelp.class nowd noheader;&lt;BR /&gt;
column name sex age height weight;&lt;BR /&gt;
run;&lt;BR /&gt;
                 &lt;BR /&gt;
ods csv close;&lt;BR /&gt;
[/pre]</description>
      <pubDate>Wed, 24 Nov 2010 16:15:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/export-data-set-to-Excel-but-NO-headers-pleazze/m-p/39358#M7951</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2010-11-24T16:15:23Z</dc:date>
    </item>
    <item>
      <title>Re: export data set to Excel but NO headers pleazze</title>
      <link>https://communities.sas.com/t5/SAS-Programming/export-data-set-to-Excel-but-NO-headers-pleazze/m-p/39359#M7952</link>
      <description>or Herman,&lt;BR /&gt;
are you willing to consider creating just the data, in a CSV file&lt;BR /&gt;
Assuming you want ALL columns and rows, and in their default order and formats, it is very brief&lt;BR /&gt;
data _null_;&lt;BR /&gt;
File 'your.csv' dsd lrecl=10000;&lt;BR /&gt;
Set  your.dataset ;&lt;BR /&gt;
Put ( _all_)(:);&lt;BR /&gt;
run;&lt;BR /&gt;
That's all!&lt;BR /&gt;
then let excel open 'your.csv' &lt;BR /&gt;
&lt;BR /&gt;
 &lt;BR /&gt;
peterC</description>
      <pubDate>Wed, 24 Nov 2010 20:16:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/export-data-set-to-Excel-but-NO-headers-pleazze/m-p/39359#M7952</guid>
      <dc:creator>Peter_C</dc:creator>
      <dc:date>2010-11-24T20:16:59Z</dc:date>
    </item>
    <item>
      <title>Re: export data set to Excel but NO headers pleazze</title>
      <link>https://communities.sas.com/t5/SAS-Programming/export-data-set-to-Excel-but-NO-headers-pleazze/m-p/39360#M7953</link>
      <description>Hi.&lt;BR /&gt;
When I look up documentation about excel,I found another proc can do it.&lt;BR /&gt;
&lt;BR /&gt;
[pre]&lt;BR /&gt;
proc dbload dbms=excel  data=sashelp.class;&lt;BR /&gt;
   path='c:\mydata.xls';&lt;BR /&gt;
   putnames=no;&lt;BR /&gt;
   limit=0;&lt;BR /&gt;
   load;&lt;BR /&gt;
  run;&lt;BR /&gt;
[/pre]&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Ksharp

Message was edited by: Ksharp</description>
      <pubDate>Thu, 25 Nov 2010 01:38:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/export-data-set-to-Excel-but-NO-headers-pleazze/m-p/39360#M7953</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2010-11-25T01:38:22Z</dc:date>
    </item>
    <item>
      <title>Re: export data set to Excel but NO headers pleazze</title>
      <link>https://communities.sas.com/t5/SAS-Programming/export-data-set-to-Excel-but-NO-headers-pleazze/m-p/39361#M7954</link>
      <description>Hi:&lt;BR /&gt;
  It is also worth noting (from the doc) that DBLOAD will only create Excel 5/95 files. It says here: &lt;A href="http://support.sas.com/documentation/cdl/en/acpcref/63184/HTML/default/viewer.htm#a003080545.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/acpcref/63184/HTML/default/viewer.htm#a003080545.htm&lt;/A&gt;&lt;BR /&gt;
that: &lt;B&gt;The DBLOAD procedure does not support Excel 97 or later files. &lt;/B&gt;&lt;BR /&gt;
 &lt;BR /&gt;
You will have to evaluate whether you want to create an older version of an Excel file format.&lt;BR /&gt;
 &lt;BR /&gt;
Also, there are some Tech Support notes about using DBLOAD, including this one;&lt;BR /&gt;
 &lt;A href="http://support.sas.com/kb/13/954.html" target="_blank"&gt;http://support.sas.com/kb/13/954.html&lt;/A&gt; indicates that with SAS 9.1.3, there was an issue with DBLOAD applying numeric formats correctly. &lt;BR /&gt;
&lt;BR /&gt;
cynthia</description>
      <pubDate>Thu, 25 Nov 2010 04:01:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/export-data-set-to-Excel-but-NO-headers-pleazze/m-p/39361#M7954</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2010-11-25T04:01:30Z</dc:date>
    </item>
    <item>
      <title>Re: export data set to Excel but NO headers pleazze</title>
      <link>https://communities.sas.com/t5/SAS-Programming/export-data-set-to-Excel-but-NO-headers-pleazze/m-p/39362#M7955</link>
      <description>[pre]&lt;BR /&gt;
PROC EXPORT DATA=sashelp.shoes FILE="c:\new.xls"  DBMS=XLS REPLACE;&lt;BR /&gt;
  SHEET='Invoice';&lt;BR /&gt;
  putnames=no;&lt;BR /&gt;
RUN;&lt;BR /&gt;
[/pre]</description>
      <pubDate>Fri, 26 Nov 2010 04:46:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/export-data-set-to-Excel-but-NO-headers-pleazze/m-p/39362#M7955</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2010-11-26T04:46:37Z</dc:date>
    </item>
    <item>
      <title>Re: export data set to Excel but NO headers pleazze</title>
      <link>https://communities.sas.com/t5/SAS-Programming/export-data-set-to-Excel-but-NO-headers-pleazze/m-p/39363#M7956</link>
      <description>I hoped this was the solution.....however the software who needs this excel can't deal with dbms=XLS!&lt;BR /&gt;
It should be at least EXCEL (I tested it) .... and putnams is only available with XLS&lt;BR /&gt;
Look at&lt;BR /&gt;
&lt;A href="http://support.sas.com/documentation/cdl/en/acpcref/63184/HTML/default/viewer.htm#a003103761.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/acpcref/63184/HTML/default/viewer.htm#a003103761.htm&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
thanks all for responding!!!&lt;BR /&gt;
&lt;BR /&gt;
Regards,&lt;BR /&gt;
Herman</description>
      <pubDate>Fri, 26 Nov 2010 09:37:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/export-data-set-to-Excel-but-NO-headers-pleazze/m-p/39363#M7956</guid>
      <dc:creator>Jaheuk</dc:creator>
      <dc:date>2010-11-26T09:37:22Z</dc:date>
    </item>
    <item>
      <title>Re: export data set to Excel but NO headers pleazze</title>
      <link>https://communities.sas.com/t5/SAS-Programming/export-data-set-to-Excel-but-NO-headers-pleazze/m-p/39364#M7957</link>
      <description>To the OP: you never replied to Cynthia where she suggested using ODS CSV.  Also, it is unclear what is meant by needing "...the software who needs....it should be at least EXCEL" -- are you getting some type of specific error when attempting to read the SAS-generated DBMS=XLS  file?  Please provide a clear problem symptom.  Also it is useful to include SAS version, the operating system information, to start with.&lt;BR /&gt;
&lt;BR /&gt;
Scott Barry&lt;BR /&gt;
SBBWorks, Inc.</description>
      <pubDate>Fri, 26 Nov 2010 14:55:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/export-data-set-to-Excel-but-NO-headers-pleazze/m-p/39364#M7957</guid>
      <dc:creator>sbb</dc:creator>
      <dc:date>2010-11-26T14:55:10Z</dc:date>
    </item>
    <item>
      <title>Re: export data set to Excel but NO headers pleazze</title>
      <link>https://communities.sas.com/t5/SAS-Programming/export-data-set-to-Excel-but-NO-headers-pleazze/m-p/39365#M7958</link>
      <description>TO MISTER SCOTT BARRY: may I kindly ask you stop replying to my questions!!&lt;BR /&gt;
I am really getting tired of you stupid remarks!! Get a life...go fishing!!&lt;BR /&gt;
&lt;BR /&gt;
H.</description>
      <pubDate>Fri, 26 Nov 2010 16:50:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/export-data-set-to-Excel-but-NO-headers-pleazze/m-p/39365#M7958</guid>
      <dc:creator>Jaheuk</dc:creator>
      <dc:date>2010-11-26T16:50:17Z</dc:date>
    </item>
    <item>
      <title>Re: export data set to Excel but NO headers pleazze</title>
      <link>https://communities.sas.com/t5/SAS-Programming/export-data-set-to-Excel-but-NO-headers-pleazze/m-p/39366#M7959</link>
      <description>This is a professional forum.  You have asked for free help from folks who are taking time from their lives to give you free assistance.  Please keep the conversation civil.  If you do not care for a reply then ignore it, but please consider that your response will be read by a much larger audience.</description>
      <pubDate>Fri, 26 Nov 2010 20:08:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/export-data-set-to-Excel-but-NO-headers-pleazze/m-p/39366#M7959</guid>
      <dc:creator>ArtC</dc:creator>
      <dc:date>2010-11-26T20:08:18Z</dc:date>
    </item>
    <item>
      <title>Re: export data set to Excel but NO headers pleazze</title>
      <link>https://communities.sas.com/t5/SAS-Programming/export-data-set-to-Excel-but-NO-headers-pleazze/m-p/39367#M7960</link>
      <description>It looks like that The only way is similar with Cynthia mentioned.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
[pre]&lt;BR /&gt;
ods tagsets.excelxp file='c:\temp\nohead.xls';&lt;BR /&gt;
              &lt;BR /&gt;
proc report data=sashelp.class nowd noheader;&lt;BR /&gt;
column name sex age height weight;&lt;BR /&gt;
run;&lt;BR /&gt;
                 &lt;BR /&gt;
ods tagsets.excelxp close;&lt;BR /&gt;
&lt;BR /&gt;
[/pre]&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Ksharp</description>
      <pubDate>Wed, 23 Feb 2011 07:01:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/export-data-set-to-Excel-but-NO-headers-pleazze/m-p/39367#M7960</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2011-02-23T07:01:22Z</dc:date>
    </item>
  </channel>
</rss>

