<?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: Writing SAS data into MS Excel without varnames in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Writing-SAS-data-into-MS-Excel-without-varnames/m-p/33419#M6539</link>
    <description>Jaroslav&lt;BR /&gt;
 Which version do you use?&lt;BR /&gt;
&lt;BR /&gt;
 If you want to write into an existing range name (in an existing excel workbook), you have very few methods where the range does not have a header row.&lt;BR /&gt;
 It is possible that the only way will be the (much-deprecated) DDE which has worked in all releases of SAS on windows since SAS version 6.08. It needs to be able to write into an open instance of excel.&lt;BR /&gt;
Which versions of excel and sas do you use?  &lt;BR /&gt;
 &lt;BR /&gt;
peter</description>
    <pubDate>Sun, 06 Jun 2010 11:11:33 GMT</pubDate>
    <dc:creator>Peter_C</dc:creator>
    <dc:date>2010-06-06T11:11:33Z</dc:date>
    <item>
      <title>Writing SAS data into MS Excel without varnames</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Writing-SAS-data-into-MS-Excel-without-varnames/m-p/33414#M6534</link>
      <description>Hi,&lt;BR /&gt;
I am trying to use the LIBNAME statement to read and write the data from/into the excel file. To access I use also the named ranges as mentioned in &lt;A href="http://www2.sas.com/proceedings/sugi31/024-31.pdf" target="_blank"&gt;http://www2.sas.com/proceedings/sugi31/024-31.pdf&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
I have the the following question:&lt;BR /&gt;
is there any possibility to write the SAS data into MS Excel named range without writing the variable names? (I have found the libname option HEADER=NO that for reading without varnames, but this doesn't work when writing into excel).&lt;BR /&gt;
&lt;BR /&gt;
My SAS version is 9.1.3.&lt;BR /&gt;
&lt;BR /&gt;
Thank you in advance!&lt;BR /&gt;
Jaroslav</description>
      <pubDate>Tue, 22 Jul 2008 13:08:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Writing-SAS-data-into-MS-Excel-without-varnames/m-p/33414#M6534</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2008-07-22T13:08:25Z</dc:date>
    </item>
    <item>
      <title>Re: Writing SAS data into MS Excel without varnames</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Writing-SAS-data-into-MS-Excel-without-varnames/m-p/33415#M6535</link>
      <description>Any luck finding the answer to this question?  I tried using options HEADER=NO and dbSasLabel=none but they did not work.  &lt;BR /&gt;
&lt;BR /&gt;
Thank You,&lt;BR /&gt;
JC</description>
      <pubDate>Fri, 04 Jun 2010 17:49:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Writing-SAS-data-into-MS-Excel-without-varnames/m-p/33415#M6535</guid>
      <dc:creator>jc671</dc:creator>
      <dc:date>2010-06-04T17:49:57Z</dc:date>
    </item>
    <item>
      <title>Re: Writing SAS data into MS Excel without varnames</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Writing-SAS-data-into-MS-Excel-without-varnames/m-p/33416#M6536</link>
      <description>There are some suggestion from  Cynthia@sas   .&lt;BR /&gt;
&lt;BR /&gt;
[pre]&lt;BR /&gt;
data _null_;&lt;BR /&gt;
  set sashelp.class; &lt;BR /&gt;
  file 'c:\range.csv' dsd;&lt;BR /&gt;
  put name sex;&lt;BR /&gt;
run;&lt;BR /&gt;
[/pre]&lt;BR /&gt;
&lt;BR /&gt;
then open range.csv by excel  and Save As ----&amp;gt; xls file.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Ksharp</description>
      <pubDate>Sat, 05 Jun 2010 10:55:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Writing-SAS-data-into-MS-Excel-without-varnames/m-p/33416#M6536</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2010-06-05T10:55:48Z</dc:date>
    </item>
    <item>
      <title>Re: Writing SAS data into MS Excel without varnames</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Writing-SAS-data-into-MS-Excel-without-varnames/m-p/33417#M6537</link>
      <description>Starting with SAS 9.2, ODS CSV can optionally suppress a column header row.  Check the options DOC.&lt;BR /&gt;
&lt;BR /&gt;
Scott Barry&lt;BR /&gt;
SBBWorks, Inc.&lt;BR /&gt;
&lt;BR /&gt;
Suggested Google advanced search argument, this topic/post:&lt;BR /&gt;
&lt;BR /&gt;
+"ods csv" +options +doc site:sas.com</description>
      <pubDate>Sat, 05 Jun 2010 12:14:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Writing-SAS-data-into-MS-Excel-without-varnames/m-p/33417#M6537</guid>
      <dc:creator>sbb</dc:creator>
      <dc:date>2010-06-05T12:14:42Z</dc:date>
    </item>
    <item>
      <title>Re: Writing SAS data into MS Excel without varnames</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Writing-SAS-data-into-MS-Excel-without-varnames/m-p/33418#M6538</link>
      <description>Thx. I am using older SAS.</description>
      <pubDate>Sun, 06 Jun 2010 03:50:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Writing-SAS-data-into-MS-Excel-without-varnames/m-p/33418#M6538</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2010-06-06T03:50:51Z</dc:date>
    </item>
    <item>
      <title>Re: Writing SAS data into MS Excel without varnames</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Writing-SAS-data-into-MS-Excel-without-varnames/m-p/33419#M6539</link>
      <description>Jaroslav&lt;BR /&gt;
 Which version do you use?&lt;BR /&gt;
&lt;BR /&gt;
 If you want to write into an existing range name (in an existing excel workbook), you have very few methods where the range does not have a header row.&lt;BR /&gt;
 It is possible that the only way will be the (much-deprecated) DDE which has worked in all releases of SAS on windows since SAS version 6.08. It needs to be able to write into an open instance of excel.&lt;BR /&gt;
Which versions of excel and sas do you use?  &lt;BR /&gt;
 &lt;BR /&gt;
peter</description>
      <pubDate>Sun, 06 Jun 2010 11:11:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Writing-SAS-data-into-MS-Excel-without-varnames/m-p/33419#M6539</guid>
      <dc:creator>Peter_C</dc:creator>
      <dc:date>2010-06-06T11:11:33Z</dc:date>
    </item>
    <item>
      <title>Re: Writing SAS data into MS Excel without varnames</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Writing-SAS-data-into-MS-Excel-without-varnames/m-p/33420#M6540</link>
      <description>Thank u. I will check it out.</description>
      <pubDate>Mon, 07 Jun 2010 05:24:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Writing-SAS-data-into-MS-Excel-without-varnames/m-p/33420#M6540</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2010-06-07T05:24:25Z</dc:date>
    </item>
  </channel>
</rss>

