<?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: A question about break after statement in the proc report in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/A-question-about-break-after-statement-in-the-proc-report/m-p/910025#M358912</link>
    <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data table12;
set sashelp.heart(obs=10);
run;

ods pdf file='c:\temp\temp.pdf';
proc report data=table12 nowindows headline headskip spacing = 10 style(header)={nobreakspace=on};
columns status weight ageatstart height;
define status/group order=data center width =20 " Test Day " style(column)={just=c};
define weight /display center width=10 "Treatment" ;
define ageatstart / display center width =14 "N";
define height /display center width = 40" Adjusted Mean(SE)";
title1 bold "Table11";
title2 bold "Summary od Blood Glucose Level over time";
title3 bold "ITT Subjects";

compute after status;
line " ";
endcomp;

compute after ; 
line @3 "(*ESC*){style [textdecoration=overline] Adjusted mean is calculated using PROC MIXED stage as factor and treatment.                }";
endcomp;
run;
ods pdf close;

&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Ksharp_0-1704169997521.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/92150i1D3091E701588707/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Ksharp_0-1704169997521.png" alt="Ksharp_0-1704169997521.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 02 Jan 2024 04:33:41 GMT</pubDate>
    <dc:creator>Ksharp</dc:creator>
    <dc:date>2024-01-02T04:33:41Z</dc:date>
    <item>
      <title>A question about break after statement in the proc report</title>
      <link>https://communities.sas.com/t5/SAS-Programming/A-question-about-break-after-statement-in-the-proc-report/m-p/910018#M358909</link>
      <description>&lt;P&gt;Hi guys! I have one question about "break after" statement:&lt;/P&gt;&lt;P&gt;I want to create a table like below:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2024-01-01 at 4.34.28 PM.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/92147iB5D031EB83F1BAD1/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screenshot 2024-01-01 at 4.34.28 PM.png" alt="Screenshot 2024-01-01 at 4.34.28 PM.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and here is my code:&lt;/P&gt;&lt;P&gt;proc report data=table12 nowindows headline headskip spacing = 10 style(header)={nobreakspace=on};&lt;BR /&gt;columns AVISITN_1 Trt01a count mean_se;&lt;BR /&gt;define AVISITN_1/group order=data center width =20 " Test Day " style(column)={just=c};&lt;BR /&gt;define Trt01a /display center width=10 "Treatment" ;&lt;BR /&gt;define count / display center width =14 "N";&lt;BR /&gt;define mean_se /display center width = 40" Adjusted Mean(SE)";&lt;BR /&gt;title1 bold "Table11";&lt;BR /&gt;title2 bold "Summary od Blood Glucose Level over time";&lt;BR /&gt;title3 bold "ITT Subjects";&lt;BR /&gt;&lt;BR /&gt;compute after AVISITN_1;&lt;BR /&gt;line " ";&lt;BR /&gt;endcomp;&lt;/P&gt;&lt;P&gt;compute after ;&lt;BR /&gt;line @3 %sysfunc(repeat(——, 55));&lt;BR /&gt;line @3 "Adjusted mean is calculated using PROC MIXED stage as factor and treatment.";&lt;BR /&gt;endcomp;&lt;BR /&gt;run;&lt;BR /&gt;ods pdf close;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and my output:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2024-01-01 at 4.35.02 PM.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/92148iEB0C849284B0201E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screenshot 2024-01-01 at 4.35.02 PM.png" alt="Screenshot 2024-01-01 at 4.35.02 PM.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt; I found even though I add :&lt;/P&gt;&lt;P&gt;compute after ;&lt;BR /&gt;line @3 %sysfunc(repeat(——, 55));&lt;/P&gt;&lt;P&gt;there is no line above the "Adjusted mean is calculated using PROC MIXED stage as factor and treatment."&lt;/P&gt;&lt;P&gt;Thanks for your help!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Jan 2024 21:36:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/A-question-about-break-after-statement-in-the-proc-report/m-p/910018#M358909</guid>
      <dc:creator>Sikcion</dc:creator>
      <dc:date>2024-01-01T21:36:55Z</dc:date>
    </item>
    <item>
      <title>Re: A question about break after statement in the proc report</title>
      <link>https://communities.sas.com/t5/SAS-Programming/A-question-about-break-after-statement-in-the-proc-report/m-p/910019#M358910</link>
      <description>&lt;P&gt;Try&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;line @3 "%sysfunc(repeat(——, 55))";&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 01 Jan 2024 21:47:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/A-question-about-break-after-statement-in-the-proc-report/m-p/910019#M358910</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2024-01-01T21:47:00Z</dc:date>
    </item>
    <item>
      <title>Re: A question about break after statement in the proc report</title>
      <link>https://communities.sas.com/t5/SAS-Programming/A-question-about-break-after-statement-in-the-proc-report/m-p/910025#M358912</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data table12;
set sashelp.heart(obs=10);
run;

ods pdf file='c:\temp\temp.pdf';
proc report data=table12 nowindows headline headskip spacing = 10 style(header)={nobreakspace=on};
columns status weight ageatstart height;
define status/group order=data center width =20 " Test Day " style(column)={just=c};
define weight /display center width=10 "Treatment" ;
define ageatstart / display center width =14 "N";
define height /display center width = 40" Adjusted Mean(SE)";
title1 bold "Table11";
title2 bold "Summary od Blood Glucose Level over time";
title3 bold "ITT Subjects";

compute after status;
line " ";
endcomp;

compute after ; 
line @3 "(*ESC*){style [textdecoration=overline] Adjusted mean is calculated using PROC MIXED stage as factor and treatment.                }";
endcomp;
run;
ods pdf close;

&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Ksharp_0-1704169997521.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/92150i1D3091E701588707/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Ksharp_0-1704169997521.png" alt="Ksharp_0-1704169997521.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Jan 2024 04:33:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/A-question-about-break-after-statement-in-the-proc-report/m-p/910025#M358912</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2024-01-02T04:33:41Z</dc:date>
    </item>
  </channel>
</rss>

