<?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: tagsets.ExcelXP Removing blank line between procedures in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/tagsets-ExcelXP-Removing-blank-line-between-procedures/m-p/249392#M15229</link>
    <description>&lt;P&gt;Look into the SKIP_SPACE option in ODS TAGSETS.EXCELXP&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/rnd/base/ods/odsmarkup/excelxp_help.html" target="_blank"&gt;http://support.sas.com/rnd/base/ods/odsmarkup/excelxp_help.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The definition of the options is here:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;A href="http://support.sas.com/rnd/base/ods/odsmarkup/excelxp_demo.html#skip" target="_blank"&gt;http://support.sas.com/rnd/base/ods/odsmarkup/excelxp_demo.html#skip&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The default values are:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Table : 1&lt;/LI&gt;
&lt;LI&gt;Byline : 0&lt;/LI&gt;
&lt;LI&gt;Title : 1&lt;/LI&gt;
&lt;LI&gt;Footer : 1&lt;/LI&gt;
&lt;LI&gt;PageBreak : 1&lt;/LI&gt;
&lt;LI&gt;&lt;/LI&gt;
&lt;/UL&gt;</description>
    <pubDate>Thu, 11 Feb 2016 09:26:51 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2016-02-11T09:26:51Z</dc:date>
    <item>
      <title>tagsets.ExcelXP Removing blank line between procedures</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/tagsets-ExcelXP-Removing-blank-line-between-procedures/m-p/249367#M15228</link>
      <description>&lt;P&gt;I'm trying to replicate a report format, and I've got the data laid out in the order that I need, but I have an extra line that I'm trying to get rid of.&amp;nbsp; I have two proc report statments that I'm running on one tab of the spreadsheet.&amp;nbsp; This is made necessary by the requirement of a header row between sections of data.&amp;nbsp; I have used the sashelp.class table to illustrate what I am trying to do:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ods tagsets.ExcelXP file='c:\problem.xml'&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; options(embedded_titles='yes'&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sheet_interval='none'&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;)&lt;BR /&gt;;&lt;BR /&gt;&lt;BR /&gt;title1 "How Do I Remove The Extra Line?";&lt;BR /&gt;title2 "The line between the two procs";&lt;BR /&gt;run;&lt;BR /&gt;proc report data=sashelp.class(where=(sex='M'));&lt;BR /&gt;column name age height weight;&lt;BR /&gt;define name / display "Name";&lt;BR /&gt;define age / display "Age";&lt;BR /&gt;define height / display "Height";&lt;BR /&gt;define weight / display "Weight";&lt;BR /&gt;compute before;&lt;BR /&gt;&amp;nbsp;line "Males in the Class";&lt;BR /&gt;endcomp;&lt;BR /&gt;compute after;&lt;BR /&gt;&amp;nbsp;line "Females in the Class";&lt;BR /&gt;endcomp;&lt;BR /&gt;run;&lt;BR /&gt;title1;&lt;BR /&gt;title2;&lt;BR /&gt;run;&lt;BR /&gt;proc report data=sashelp.class(where=(sex='F')) noheader;&lt;BR /&gt;column name age height weight;&lt;BR /&gt;define name / display "Name";&lt;BR /&gt;define age / display "Age";&lt;BR /&gt;define height / display "Height";&lt;BR /&gt;define weight / display "Weight";&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;ods tagsets.ExcelXP close;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;After each of the procedure statements, as well as before the first procedure, after the title2 statement, there is a row that I would ideally like to remove automatically (rows 3, 17 and 27).&amp;nbsp; I know I could go into the spreadsheet and remove the row manually, but I am trying to remove any manual manipulation of this workbook.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is there a way to do this programatically?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/1834iEDA547193C11EF39/image-size/original?v=mpbl-1&amp;amp;px=-1" alt="Capture.JPG" title="Capture.JPG" border="0" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Feb 2016 04:38:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/tagsets-ExcelXP-Removing-blank-line-between-procedures/m-p/249367#M15228</guid>
      <dc:creator>chimanbj</dc:creator>
      <dc:date>2016-02-11T04:38:37Z</dc:date>
    </item>
    <item>
      <title>Re: tagsets.ExcelXP Removing blank line between procedures</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/tagsets-ExcelXP-Removing-blank-line-between-procedures/m-p/249392#M15229</link>
      <description>&lt;P&gt;Look into the SKIP_SPACE option in ODS TAGSETS.EXCELXP&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/rnd/base/ods/odsmarkup/excelxp_help.html" target="_blank"&gt;http://support.sas.com/rnd/base/ods/odsmarkup/excelxp_help.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The definition of the options is here:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;A href="http://support.sas.com/rnd/base/ods/odsmarkup/excelxp_demo.html#skip" target="_blank"&gt;http://support.sas.com/rnd/base/ods/odsmarkup/excelxp_demo.html#skip&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The default values are:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Table : 1&lt;/LI&gt;
&lt;LI&gt;Byline : 0&lt;/LI&gt;
&lt;LI&gt;Title : 1&lt;/LI&gt;
&lt;LI&gt;Footer : 1&lt;/LI&gt;
&lt;LI&gt;PageBreak : 1&lt;/LI&gt;
&lt;LI&gt;&lt;/LI&gt;
&lt;/UL&gt;</description>
      <pubDate>Thu, 11 Feb 2016 09:26:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/tagsets-ExcelXP-Removing-blank-line-between-procedures/m-p/249392#M15229</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-02-11T09:26:51Z</dc:date>
    </item>
    <item>
      <title>Re: tagsets.ExcelXP Removing blank line between procedures</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/tagsets-ExcelXP-Removing-blank-line-between-procedures/m-p/255347#M15364</link>
      <description>&lt;P&gt;Thank you for that solution!&lt;/P&gt;</description>
      <pubDate>Tue, 08 Mar 2016 19:57:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/tagsets-ExcelXP-Removing-blank-line-between-procedures/m-p/255347#M15364</guid>
      <dc:creator>chimanbj</dc:creator>
      <dc:date>2016-03-08T19:57:31Z</dc:date>
    </item>
  </channel>
</rss>

