<?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: How Can I Make Header Justified Left Partially by Using PROC REPORT? in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-Can-I-Make-Header-Justified-Left-Partially-by-Using-PROC/m-p/564044#M22830</link>
    <description>&lt;P&gt;heffo-san:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks a lot!!&lt;/P&gt;</description>
    <pubDate>Thu, 06 Jun 2019 11:58:12 GMT</pubDate>
    <dc:creator>KentaMURANAKA</dc:creator>
    <dc:date>2019-06-06T11:58:12Z</dc:date>
    <item>
      <title>How Can I Make Header Justified Left Partially by Using PROC REPORT?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-Can-I-Make-Header-Justified-Left-Partially-by-Using-PROC/m-p/563418#M22813</link>
      <description>&lt;P&gt;Hi, there:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like to make only part of headers ("AAAAA" in my example) justified left by using PROC REPORT.&lt;/P&gt;&lt;P&gt;I tried to use inline formatting, but my following code does not generate what I want, remains unchanged (center justified, in default?).&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data test;
    length column1-column3 $200.;
    column1="aaaaa"; column2="bbbbb"; column3="ccccc"; output;
run;
ods rtf file="PleaseSpecifyYourOwnFolder\test.rtf";
proc report data=test nowindows;
    column ("(*ESC*){style[fontfamily='Times New Roman' just=left]AAAAA}" column1 ("BBBBB" column2) ("CCCCC" column3));
    define column1 / display;
    define column2 / display;
    define column3 / display;
run;
quit;
ods rtf close;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ex.PNG" style="width: 199px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/29980iBE0905A50C98B75B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ex.PNG" alt="ex.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I have no idea. Please help me.&lt;/P&gt;&lt;P&gt;Thank you in advance.&lt;/P&gt;</description>
      <pubDate>Tue, 04 Jun 2019 01:43:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-Can-I-Make-Header-Justified-Left-Partially-by-Using-PROC/m-p/563418#M22813</guid>
      <dc:creator>KentaMURANAKA</dc:creator>
      <dc:date>2019-06-04T01:43:08Z</dc:date>
    </item>
    <item>
      <title>Re: How Can I Make Header Justified Left Partially by Using PROC REPORT?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-Can-I-Make-Header-Justified-Left-Partially-by-Using-PROC/m-p/563424#M22814</link>
      <description>&lt;P&gt;Try style(header)={just=l} on the proc report line:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc report data=test nowindows style(header)={just=l};
    column ("(*ESC*){style[fontfamily='Times New Roman' just=left]AAAAA}" column1 ("BBBBB" column2) ("CCCCC" column3));
    define column1 / display;
    define column2 / display;
    define column3 / display;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 04 Jun 2019 03:16:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-Can-I-Make-Header-Justified-Left-Partially-by-Using-PROC/m-p/563424#M22814</guid>
      <dc:creator>heffo</dc:creator>
      <dc:date>2019-06-04T03:16:29Z</dc:date>
    </item>
    <item>
      <title>Re: How Can I Make Header Justified Left Partially by Using PROC REPORT?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-Can-I-Make-Header-Justified-Left-Partially-by-Using-PROC/m-p/563436#M22815</link>
      <description>&lt;P&gt;Hi, heffo-san:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Your code works.&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have one more question.&lt;/P&gt;&lt;P&gt;I think, your code's style(header)=xx effects overall headers, but result is not (only for top header "AAAAA").&lt;/P&gt;&lt;P&gt;I misunderstand? Any reference info is welcome.&lt;/P&gt;&lt;P&gt;Thank you in advance.&lt;/P&gt;</description>
      <pubDate>Tue, 04 Jun 2019 04:00:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-Can-I-Make-Header-Justified-Left-Partially-by-Using-PROC/m-p/563436#M22815</guid>
      <dc:creator>KentaMURANAKA</dc:creator>
      <dc:date>2019-06-04T04:00:29Z</dc:date>
    </item>
    <item>
      <title>Re: How Can I Make Header Justified Left Partially by Using PROC REPORT?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-Can-I-Make-Header-Justified-Left-Partially-by-Using-PROC/m-p/563437#M22816</link>
      <description>&lt;P&gt;Hi, heffo-san, All:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sorry, but one problem,&lt;/P&gt;&lt;P&gt;Following your code, almost all headers, "AAAAA"~"CCCCC" are left justified.&lt;/P&gt;&lt;P&gt;I want lower headers, "BBBBB" &amp;amp; "CCCCC" to remain unchanged (i.e., center justified).&lt;/P&gt;&lt;P&gt;Please help me. Thank you in advance.&lt;/P&gt;</description>
      <pubDate>Tue, 04 Jun 2019 04:17:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-Can-I-Make-Header-Justified-Left-Partially-by-Using-PROC/m-p/563437#M22816</guid>
      <dc:creator>KentaMURANAKA</dc:creator>
      <dc:date>2019-06-04T04:17:46Z</dc:date>
    </item>
    <item>
      <title>Re: How Can I Make Header Justified Left Partially by Using PROC REPORT?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-Can-I-Make-Header-Justified-Left-Partially-by-Using-PROC/m-p/563629#M22825</link>
      <description>&lt;P&gt;Could this work:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods escapechar='^';
ods rtf file="\\FMAWPDFP02\Home$\henrik.forsell\test2.rtf";
proc report data=test nowindows style(header)={just=l};
	column ('aaaaa' column1 ('^S={just=c} bbbb' column2) ('^S={just=c} cccc' column3));
    define column1 / display;
    define column2 / display;
    define column3 / display;
run;
quit;
ods rtf close;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 05 Jun 2019 00:49:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-Can-I-Make-Header-Justified-Left-Partially-by-Using-PROC/m-p/563629#M22825</guid>
      <dc:creator>heffo</dc:creator>
      <dc:date>2019-06-05T00:49:37Z</dc:date>
    </item>
    <item>
      <title>Re: How Can I Make Header Justified Left Partially by Using PROC REPORT?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-Can-I-Make-Header-Justified-Left-Partially-by-Using-PROC/m-p/564044#M22830</link>
      <description>&lt;P&gt;heffo-san:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks a lot!!&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jun 2019 11:58:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-Can-I-Make-Header-Justified-Left-Partially-by-Using-PROC/m-p/564044#M22830</guid>
      <dc:creator>KentaMURANAKA</dc:creator>
      <dc:date>2019-06-06T11:58:12Z</dc:date>
    </item>
  </channel>
</rss>

