<?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: Proc Export to excel with just one row and no column names in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Proc-Export-to-excel-with-just-one-row-and-no-column-names/m-p/826963#M326651</link>
    <description>Worked..&lt;BR /&gt;Proc report data=ver noheaders;&lt;BR /&gt;run;</description>
    <pubDate>Wed, 03 Aug 2022 18:19:41 GMT</pubDate>
    <dc:creator>Stalk</dc:creator>
    <dc:date>2022-08-03T18:19:41Z</dc:date>
    <item>
      <title>Proc Export to excel with just one row and no column names</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Export-to-excel-with-just-one-row-and-no-column-names/m-p/822868#M324926</link>
      <description>&lt;P&gt;I am using Proc export to write to three sheets in an single workbook.&lt;/P&gt;
&lt;P&gt;In the first sheet( cell A1)&amp;nbsp; I just have to write text "Product ver: 3.1" with out any titles or columns so the SQL data base can read my excel books with all the 3 pages. Is there a simple way to do this?&lt;/P&gt;
&lt;P&gt;When I export all the three sheet are populating with data except the first sheet where it is writing as follows.. How can I avoid the column name&amp;nbsp; "txt" and only product version.&lt;/P&gt;
&lt;TABLE width="176"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="176"&gt;txt&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Product Ver: 3.1&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Tue, 12 Jul 2022 15:01:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Export-to-excel-with-just-one-row-and-no-column-names/m-p/822868#M324926</guid>
      <dc:creator>Stalk</dc:creator>
      <dc:date>2022-07-12T15:01:18Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Export to excel with just one row and no column names</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Export-to-excel-with-just-one-row-and-no-column-names/m-p/822871#M324927</link>
      <description>&lt;P&gt;Show what code you used to "export" to an excel file.&lt;/P&gt;
&lt;P&gt;PROC EXPORT should be able to do that.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
  txt='Product Ver: 3.1';
run;
proc export data=have file='c:\downloads\no_header.xlsx' replace dbms=xlsx;
  putnames=NO;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Tom_0-1657638799528.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/73209iB0B3733B241CDB77/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Tom_0-1657638799528.png" alt="Tom_0-1657638799528.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Jul 2022 15:13:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Export-to-excel-with-just-one-row-and-no-column-names/m-p/822871#M324927</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2022-07-12T15:13:26Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Export to excel with just one row and no column names</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Export-to-excel-with-just-one-row-and-no-column-names/m-p/822872#M324928</link>
      <description>&lt;P&gt;Perfect. SAS community is the Best friend for those working as solo SAS performer in the team.&lt;/P&gt;
&lt;P&gt;I love this community&lt;/P&gt;</description>
      <pubDate>Tue, 12 Jul 2022 15:24:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Export-to-excel-with-just-one-row-and-no-column-names/m-p/822872#M324928</guid>
      <dc:creator>Stalk</dc:creator>
      <dc:date>2022-07-12T15:24:05Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Export to excel with just one row and no column names</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Export-to-excel-with-just-one-row-and-no-column-names/m-p/826944#M326648</link>
      <description>Actually, what is the equivalent to  putnames=NO when using ODS excel?&lt;BR /&gt;proc export is truncating some of the character data so decided to use ods excel.&lt;BR /&gt;&lt;BR /&gt;ODS excel options(sheet_name='Version' );&lt;BR /&gt; &lt;BR /&gt;Proc print data=ver noobs;&lt;BR /&gt;run;</description>
      <pubDate>Wed, 03 Aug 2022 16:52:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Export-to-excel-with-just-one-row-and-no-column-names/m-p/826944#M326648</guid>
      <dc:creator>Stalk</dc:creator>
      <dc:date>2022-08-03T16:52:44Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Export to excel with just one row and no column names</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Export-to-excel-with-just-one-row-and-no-column-names/m-p/826963#M326651</link>
      <description>Worked..&lt;BR /&gt;Proc report data=ver noheaders;&lt;BR /&gt;run;</description>
      <pubDate>Wed, 03 Aug 2022 18:19:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Export-to-excel-with-just-one-row-and-no-column-names/m-p/826963#M326651</guid>
      <dc:creator>Stalk</dc:creator>
      <dc:date>2022-08-03T18:19:41Z</dc:date>
    </item>
  </channel>
</rss>

