<?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 Report skip in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-Report-skip/m-p/50502#M6450</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi:&lt;/P&gt;&lt;P&gt;&amp;nbsp; There are many PROC REPORT options that are LISTING only options and SKIP on a BREAK statement is one of those options (as are HEADLINE, HEADSKIP, OL, UL, BOX, etc), per this Tech Support note:&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.sas.com/kb/2/549.html"&gt;http://support.sas.com/kb/2/549.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As the note suggests, using a LINE statement is the way to have the equivalent of the SKIP happen in ODS destinations (non-LISTING destinations). For example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;compute after prob_num;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;&amp;nbsp; line ' ';&amp;nbsp; /* quote space quote */&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;endcomp;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt; &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;cynthia&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, since this is a stored process, just remember that it is possible that clients like Web Report Studio or PowerPoint may not use/honor the options. Those two client applications, in particular, use SASReport XML and they do not use all the PROC REPORT features. This is just one of the Tech Support notes about an issue: &lt;A href="http://support.sas.com/kb/19/950.html"&gt;http://support.sas.com/kb/19/950.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;added some stored process info&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 18 Nov 2011 19:04:10 GMT</pubDate>
    <dc:creator>Cynthia_sas</dc:creator>
    <dc:date>2011-11-18T19:04:10Z</dc:date>
    <item>
      <title>Proc Report skip</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-Report-skip/m-p/50501#M6449</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am trying to skip a line after a "break after" statement using proc report.&amp;nbsp; This is a stored process that will run on the SAS Stored Process Server.&amp;nbsp; I would like to skip a line after summing up totals by prob_num.&amp;nbsp; Here is my code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;options orientation=landscape center number;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ods pdf file=_WEBOUT notoc;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc report data=WORK.SORTSortedQUERY_FOR_PAY_MONTHLY_;&lt;/P&gt;&lt;P&gt;title justify=left "Monthly Bonus Calculation"&lt;/P&gt;&lt;P&gt;justify=center "&amp;amp;bonus_month - &amp;amp;bonus_yr"&lt;/P&gt;&lt;P&gt;justify=right "HP14";&lt;/P&gt;&lt;P&gt;footnote "Generated by the SAS System on %TRIM(%QSYSFUNC(DATE(),MMDDYY8.)) at %TRIM(%SYSFUNC(TIME(),TIMEAMPM12.))";&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;column prob_num cc pos clock_num reg_hrs1 reg_amt1 ot_hrs1 ot_amt1 sun_hrs1 sun_amt1 worked_holiday_hrs1 worked_holiday_amt1&lt;/P&gt;&lt;P&gt;unworked_holiday_hrs1 unworked_holiday_amt1 tot_hrs tot_amt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;define prob_num / group 'Prob' ;&lt;/P&gt;&lt;P&gt;define cc / display 'CC' ;&lt;/P&gt;&lt;P&gt;define pos / display 'Pos' ;&lt;/P&gt;&lt;P&gt;define clock_num / group 'Clock No';&lt;/P&gt;&lt;P&gt;define reg_hrs1 / sum 'Reg Hrs' ;&lt;/P&gt;&lt;P&gt;define reg_amt1 / sum 'Reg Amt' ;&lt;/P&gt;&lt;P&gt;define ot_hrs1 / sum 'OT Hrs' ;&lt;/P&gt;&lt;P&gt;define ot_amt1 / sum 'OT Amt' ;&lt;/P&gt;&lt;P&gt;define sun_hrs1 / sum 'Sun Hrs' ;&lt;/P&gt;&lt;P&gt;define sun_amt1 / sum 'Sun Amt' ;&lt;/P&gt;&lt;P&gt;define worked_holiday_hrs1 / sum 'Worked Hol Hrs' ;&lt;/P&gt;&lt;P&gt;define worked_holiday_amt1 / sum 'Worked Hol Amt' ;&lt;/P&gt;&lt;P&gt;define unworked_holiday_hrs1 / sum 'Unworked Hol Hrs' ;&lt;/P&gt;&lt;P&gt;define unworked_holiday_amt1 / sum 'Unworked Hol Amt' ;&lt;/P&gt;&lt;P&gt;define tot_hrs / sum 'Tot Hrs' ;&lt;/P&gt;&lt;P&gt;define tot_amt / sum 'Tot Amt' ;&lt;/P&gt;&lt;P&gt;break after clock_num / summarize style=[font_weight=bold] ;&lt;/P&gt;&lt;P&gt;break after prob_num / summarize style=[font_weight=bold] skip;&lt;/P&gt;&lt;P&gt;rbreak after / summarize style=[font_weight=bold] ;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ods _all_ close;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I place the "skip" in the break after statement, but it does not skip a line.&amp;nbsp;&amp;nbsp; Am I missing something?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Nov 2011 18:46:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-Report-skip/m-p/50501#M6449</guid>
      <dc:creator>LAtwood</dc:creator>
      <dc:date>2011-11-18T18:46:39Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Report skip</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-Report-skip/m-p/50502#M6450</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi:&lt;/P&gt;&lt;P&gt;&amp;nbsp; There are many PROC REPORT options that are LISTING only options and SKIP on a BREAK statement is one of those options (as are HEADLINE, HEADSKIP, OL, UL, BOX, etc), per this Tech Support note:&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.sas.com/kb/2/549.html"&gt;http://support.sas.com/kb/2/549.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As the note suggests, using a LINE statement is the way to have the equivalent of the SKIP happen in ODS destinations (non-LISTING destinations). For example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;compute after prob_num;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;&amp;nbsp; line ' ';&amp;nbsp; /* quote space quote */&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;endcomp;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt; &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;cynthia&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, since this is a stored process, just remember that it is possible that clients like Web Report Studio or PowerPoint may not use/honor the options. Those two client applications, in particular, use SASReport XML and they do not use all the PROC REPORT features. This is just one of the Tech Support notes about an issue: &lt;A href="http://support.sas.com/kb/19/950.html"&gt;http://support.sas.com/kb/19/950.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;added some stored process info&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Nov 2011 19:04:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-Report-skip/m-p/50502#M6450</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2011-11-18T19:04:10Z</dc:date>
    </item>
    <item>
      <title>Proc Report skip</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-Report-skip/m-p/50503#M6451</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Thanks Cynthia!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Nov 2011 19:07:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-Report-skip/m-p/50503#M6451</guid>
      <dc:creator>LAtwood</dc:creator>
      <dc:date>2011-11-18T19:07:22Z</dc:date>
    </item>
  </channel>
</rss>

