<?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-  How to fix the indentation when text flows to next line in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Proc-Report-How-to-fix-the-indentation-when-text-flows-to-next/m-p/796798#M255710</link>
    <description>&lt;P&gt;Not too sure where the indentation comes from. From the&amp;nbsp;TLF_CN_9 style?&lt;/P&gt;
&lt;P&gt;Can you change the style to use cell padding instead of indentation?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Or is it the value of the variables that start with a tab or similar?&lt;/P&gt;</description>
    <pubDate>Thu, 17 Feb 2022 05:02:14 GMT</pubDate>
    <dc:creator>ChrisNZ</dc:creator>
    <dc:date>2022-02-17T05:02:14Z</dc:date>
    <item>
      <title>Proc Report-  How to fix the indentation when text flows to next line</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Report-How-to-fix-the-indentation-when-text-flows-to-next/m-p/796626#M255650</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a column that is indented in the first line but when it flows to the next line it doesn't align with that indentation. Any idea how to fix this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;output:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="HitmonTran_0-1645029766130.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/68546iF0F0ACDC7FB8E67E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="HitmonTran_0-1645029766130.png" alt="HitmonTran_0-1645029766130.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;proc report:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;ods pdf file = "&amp;amp;path.\=&amp;amp;pgmout._&amp;amp;outp..pdf" startpage=no style= TLF_CN_9;
options orientation=landscape;

  
  proc report data=final nowindows center headline headskip missing split='@';
    column order1 order2 sort catdesc ("1.0 @(N=&amp;amp;trtgn1)" c_TRTG1) (" Placebo@(N=&amp;amp;trtgn2)" c_TRTG2) 
	                           			("2.0  (N=&amp;amp;trtgn3)" c_TRTG3) (" @Placebo@(N=&amp;amp;trtgn4)" c_TRTG4)  ("Total@(N=&amp;amp;alln)" c_all);

    define order1    / order order=internal noprint;
    define sort      / order order=internal noprint;
    define order2    / order noprint;
	define catdesc   / display ' ' style(column)={asis=on just=left cellwidth=4.4 in} flow style(header)={just=left font_size=9pt};
	define c_trtg1   / display " " style(column)={asis=on just=center cellwidth=1.2in} flow style(header)={just=center font_size=9pt};
	define c_trtg2   / display " " style(column)={asis=on just=center cellwidth=1.2in} flow style(header)={just=center font_size=9pt};
	define c_trtg3   / display " " style(column)={asis=on just=center cellwidth=1.2in} flow style(header)={just=center font_size=9pt};
	define c_trtg4   / display " " style(column)={asis=on just=center cellwidth=1.2in} flow style(header)={just=center font_size=9pt};
	define c_all / display " "  style(column)={asis=on just=center cellwidth=1.2in} flow style(header)={just=center font_size=9pt};

    break after sort / skip;
    compute after sort / style(lines)={font_size = 3pt};
      line " "; 
    endcomp;
    compute before order1;
	   line " ";
	endcomp;
  run;
 
ods _all_ close;
ods listing;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Feb 2022 16:42:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Report-How-to-fix-the-indentation-when-text-flows-to-next/m-p/796626#M255650</guid>
      <dc:creator>HitmonTran</dc:creator>
      <dc:date>2022-02-16T16:42:41Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Report-  How to fix the indentation when text flows to next line</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Report-How-to-fix-the-indentation-when-text-flows-to-next/m-p/796798#M255710</link>
      <description>&lt;P&gt;Not too sure where the indentation comes from. From the&amp;nbsp;TLF_CN_9 style?&lt;/P&gt;
&lt;P&gt;Can you change the style to use cell padding instead of indentation?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Or is it the value of the variables that start with a tab or similar?&lt;/P&gt;</description>
      <pubDate>Thu, 17 Feb 2022 05:02:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Report-How-to-fix-the-indentation-when-text-flows-to-next/m-p/796798#M255710</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2022-02-17T05:02:14Z</dc:date>
    </item>
  </channel>
</rss>

