<?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: excel specify each report the start and end point in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/excel-specify-each-report-the-start-and-end-point/m-p/499963#M133077</link>
    <description>&lt;P&gt;Thank you. Its kind of a workaround until i found the right solution.&lt;/P&gt;</description>
    <pubDate>Fri, 28 Sep 2018 16:43:34 GMT</pubDate>
    <dc:creator>radha009</dc:creator>
    <dc:date>2018-09-28T16:43:34Z</dc:date>
    <item>
      <title>excel specify each report the start and end point</title>
      <link>https://communities.sas.com/t5/SAS-Programming/excel-specify-each-report-the-start-and-end-point/m-p/499886#M133057</link>
      <description>&lt;P&gt;In ODS excel , i have multiple (6 tables) proc reports display in one sheet. Is there a way i define for each proc report the start and end row on the excel sheet.&lt;/P&gt;</description>
      <pubDate>Fri, 28 Sep 2018 13:19:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/excel-specify-each-report-the-start-and-end-point/m-p/499886#M133057</guid>
      <dc:creator>radha009</dc:creator>
      <dc:date>2018-09-28T13:19:02Z</dc:date>
    </item>
    <item>
      <title>Re: excel specify each report the start and end point</title>
      <link>https://communities.sas.com/t5/SAS-Programming/excel-specify-each-report-the-start-and-end-point/m-p/499891#M133058</link>
      <description>&lt;P&gt;Show some example please.&amp;nbsp; What is your code, what is the output, what is wrong?&lt;/P&gt;
&lt;P&gt;I will take a guess at:&lt;/P&gt;
&lt;PRE&gt;proc report...;
...

  compute after;
    line "End of report";
  endcomp;
run;&lt;/PRE&gt;</description>
      <pubDate>Fri, 28 Sep 2018 13:31:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/excel-specify-each-report-the-start-and-end-point/m-p/499891#M133058</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2018-09-28T13:31:12Z</dc:date>
    </item>
    <item>
      <title>Re: excel specify each report the start and end point</title>
      <link>https://communities.sas.com/t5/SAS-Programming/excel-specify-each-report-the-start-and-end-point/m-p/499902#M133059</link>
      <description>&lt;P&gt;I use a macro named sheetf that I assign in my output which places those data I want onto the sheet I want into the workbook&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;"Excel|&amp;amp;temppath.\[&amp;amp;workbook.]&amp;amp;sheetf.!r1c1:r28c10" notab;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Sep 2018 13:45:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/excel-specify-each-report-the-start-and-end-point/m-p/499902#M133059</guid>
      <dc:creator>VDD</dc:creator>
      <dc:date>2018-09-28T13:45:37Z</dc:date>
    </item>
    <item>
      <title>Re: excel specify each report the start and end point</title>
      <link>https://communities.sas.com/t5/SAS-Programming/excel-specify-each-report-the-start-and-end-point/m-p/499935#M133065</link>
      <description>&lt;P&gt;That's DDE code but you said you're using ODS EXCEL?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/122002"&gt;@VDD&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I use a macro named sheetf that I assign in my output which places those data I want onto the sheet I want into the workbook&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;"Excel|&amp;amp;temppath.\[&amp;amp;workbook.]&amp;amp;sheetf.!r1c1:r28c10" notab;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Sep 2018 15:39:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/excel-specify-each-report-the-start-and-end-point/m-p/499935#M133065</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-09-28T15:39:31Z</dc:date>
    </item>
    <item>
      <title>Re: excel specify each report the start and end point</title>
      <link>https://communities.sas.com/t5/SAS-Programming/excel-specify-each-report-the-start-and-end-point/m-p/499957#M133073</link>
      <description>&lt;P&gt;my code below, i didn;t get how to use within the report the range of report display. i know in excel options we have start_at.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ods excel options(sheet_name='Fruits' embedded_titles="on" sheet_interval='none');&lt;BR /&gt;title "All Incidents - Fruits by Group";&lt;BR /&gt;proc report data=dash.Ent_AllInc_Final;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;title "All test Incidents - Friuts by Group";&lt;BR /&gt;proc report data=dash.Fru_L2Inc_Final;&lt;BR /&gt;run;&lt;BR /&gt;title "Data to Create the Pie to Bar charts for Fruits";&lt;BR /&gt;proc report data=dash.Fru_pie_Final;&lt;BR /&gt;run;&lt;BR /&gt;title "Managed INC by Top Application";&lt;BR /&gt;proc report data=dash.Fru_Top_apps;&lt;BR /&gt;run;&lt;BR /&gt;title "Requests Supported by Support";&lt;BR /&gt;proc report data=dash.Fru_change_req;&lt;BR /&gt;run;&lt;BR /&gt;title "Fruits -Major Incident Report";&lt;BR /&gt;proc report data=dash.Fru_Major_INC;&lt;BR /&gt;run;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Sep 2018 16:31:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/excel-specify-each-report-the-start-and-end-point/m-p/499957#M133073</guid>
      <dc:creator>radha009</dc:creator>
      <dc:date>2018-09-28T16:31:33Z</dc:date>
    </item>
    <item>
      <title>Re: excel specify each report the start and end point</title>
      <link>https://communities.sas.com/t5/SAS-Programming/excel-specify-each-report-the-start-and-end-point/m-p/499958#M133074</link>
      <description>&lt;P&gt;yes, i am using OD excel.&lt;/P&gt;</description>
      <pubDate>Fri, 28 Sep 2018 16:32:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/excel-specify-each-report-the-start-and-end-point/m-p/499958#M133074</guid>
      <dc:creator>radha009</dc:creator>
      <dc:date>2018-09-28T16:32:22Z</dc:date>
    </item>
    <item>
      <title>Re: excel specify each report the start and end point</title>
      <link>https://communities.sas.com/t5/SAS-Programming/excel-specify-each-report-the-start-and-end-point/m-p/499961#M133076</link>
      <description>&lt;P&gt;Start at only applies to the first table.&amp;nbsp;&lt;BR /&gt;Beyond that I'm not sure how to get data to specific locations.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The method I've used isn't great. I create it manually in Excel first, with ranges and then export data to the template and specific ranges.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;AFAIK, ODS EXCEL doesn't yet support exporting to specific locations.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ODS TAGSETS.EXCELXP had some options (SKIP_SPACE) that may have helped but I'm not sure if they're in ODS EXCEL.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/192083"&gt;@radha009&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;my code below, i didn;t get how to use within the report the range of report display. i know in excel options we have start_at.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ods excel options(sheet_name='Fruits' embedded_titles="on" sheet_interval='none');&lt;BR /&gt;title "All Incidents - Fruits by Group";&lt;BR /&gt;proc report data=dash.Ent_AllInc_Final;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;title "All test Incidents - Friuts by Group";&lt;BR /&gt;proc report data=dash.Fru_L2Inc_Final;&lt;BR /&gt;run;&lt;BR /&gt;title "Data to Create the Pie to Bar charts for Fruits";&lt;BR /&gt;proc report data=dash.Fru_pie_Final;&lt;BR /&gt;run;&lt;BR /&gt;title "Managed INC by Top Application";&lt;BR /&gt;proc report data=dash.Fru_Top_apps;&lt;BR /&gt;run;&lt;BR /&gt;title "Requests Supported by Support";&lt;BR /&gt;proc report data=dash.Fru_change_req;&lt;BR /&gt;run;&lt;BR /&gt;title "Fruits -Major Incident Report";&lt;BR /&gt;proc report data=dash.Fru_Major_INC;&lt;BR /&gt;run;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Sep 2018 16:38:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/excel-specify-each-report-the-start-and-end-point/m-p/499961#M133076</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-09-28T16:38:52Z</dc:date>
    </item>
    <item>
      <title>Re: excel specify each report the start and end point</title>
      <link>https://communities.sas.com/t5/SAS-Programming/excel-specify-each-report-the-start-and-end-point/m-p/499963#M133077</link>
      <description>&lt;P&gt;Thank you. Its kind of a workaround until i found the right solution.&lt;/P&gt;</description>
      <pubDate>Fri, 28 Sep 2018 16:43:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/excel-specify-each-report-the-start-and-end-point/m-p/499963#M133077</guid>
      <dc:creator>radha009</dc:creator>
      <dc:date>2018-09-28T16:43:34Z</dc:date>
    </item>
  </channel>
</rss>

