<?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: Exporting into excel in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Exporting-into-excel/m-p/307568#M65903</link>
    <description>&lt;P&gt;Well your question is still a bit vague.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://www.sascommunity.org/wiki/A_Poor/Rich_SAS_Users_Proc_Export" target="_blank"&gt;http://www.sascommunity.org/wiki/A_Poor/Rich_SAS_Users_Proc_Export&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Or or look at ODS EXCEL and include 4 blank titles.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 27 Oct 2016 06:16:30 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2016-10-27T06:16:30Z</dc:date>
    <item>
      <title>Exporting into excel</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Exporting-into-excel/m-p/307563#M65900</link>
      <description />
      <pubDate>Thu, 27 Oct 2016 05:29:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Exporting-into-excel/m-p/307563#M65900</guid>
      <dc:creator>Sabharish</dc:creator>
      <dc:date>2016-10-27T05:29:52Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting into excel</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Exporting-into-excel/m-p/307566#M65901</link>
      <description>&lt;P&gt;&lt;A href="http://blogs.sas.com/content/sasdummy/2012/02/11/export-excel-methods/" target="_blank"&gt;http://blogs.sas.com/content/sasdummy/2012/02/11/export-excel-methods/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Oct 2016 05:51:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Exporting-into-excel/m-p/307566#M65901</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-10-27T05:51:08Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting into excel</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Exporting-into-excel/m-p/307567#M65902</link>
      <description>&lt;P&gt;I need to specify the starting row like 4th row while exporting it into excel file&lt;/P&gt;</description>
      <pubDate>Thu, 27 Oct 2016 05:58:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Exporting-into-excel/m-p/307567#M65902</guid>
      <dc:creator>Sabharish</dc:creator>
      <dc:date>2016-10-27T05:58:11Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting into excel</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Exporting-into-excel/m-p/307568#M65903</link>
      <description>&lt;P&gt;Well your question is still a bit vague.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://www.sascommunity.org/wiki/A_Poor/Rich_SAS_Users_Proc_Export" target="_blank"&gt;http://www.sascommunity.org/wiki/A_Poor/Rich_SAS_Users_Proc_Export&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Or or look at ODS EXCEL and include 4 blank titles.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Oct 2016 06:16:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Exporting-into-excel/m-p/307568#M65903</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-10-27T06:16:30Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting into excel</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Exporting-into-excel/m-p/307572#M65905</link>
      <description>&lt;P&gt;I have a dataset to be exported in excel. After exporting it in excel the first row of my dataset should in 4th row of the excel file. How can it be done.&lt;/P&gt;</description>
      <pubDate>Thu, 27 Oct 2016 07:01:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Exporting-into-excel/m-p/307572#M65905</guid>
      <dc:creator>Sabharish</dc:creator>
      <dc:date>2016-10-27T07:01:42Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting into excel</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Exporting-into-excel/m-p/307582#M65907</link>
      <description>&lt;P&gt;There are various fixes you can try. &amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza﻿&lt;/a&gt;&amp;nbsp;has provided one above by adding titles in for the four blank lines. &amp;nbsp;If you want variable names on the first line and data four after that then add blank rows to the dataset. &amp;nbsp;&lt;/P&gt;
&lt;P&gt;Generally if I need to do anything in Excel - it being nothing like any proper data capture/manipulation software - I would use Excel to do it. &amp;nbsp;Export data from SAS as CSV - very simple. &amp;nbsp;Then in Excel write some VBA which opens the CSV and puts/processes the data exactly as needed in that file (note the VBA does not need to reside in the same file). &amp;nbsp;Although I would generally avoid Excel&amp;nbsp;unless it was absolutely necessary. &amp;nbsp;Why do you need it to start there? &amp;nbsp;Do you have a template file or something (more reason to use VBA)? &amp;nbsp;If not then starting at A1 would seem like the most sensible method.&lt;/P&gt;</description>
      <pubDate>Thu, 27 Oct 2016 08:05:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Exporting-into-excel/m-p/307582#M65907</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2016-10-27T08:05:43Z</dc:date>
    </item>
  </channel>
</rss>

