<?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 text justification with in-line formatting in PDF in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/text-justification-with-in-line-formatting-in-PDF/m-p/173261#M12402</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm having a problem involving a spanning header. I want to produce a spanning header with "&lt;EM&gt;text1 &lt;/EM&gt;text2" on the left side of the page, and then "text3" at the right side of the page.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here's my COLUMNS statement:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;COLUMNS ("~{style [fontstyle=italic just=l] text1} text2 ~{style [just=r] text 3}" c1 c2 c3 c4 c5);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is left-justified, with text1 in italics and text2 in regular, but text3 follows immediately after As far as I can tell, the second JUST doesn't work. The in-line directive works (replace JUST=R with COLOR=RED and text3 turns red), but not with JUST. Is this a spanning header issue where the width of the table can't be determined in time to apply formatting?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Derek&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 13 Feb 2014 16:20:21 GMT</pubDate>
    <dc:creator>cov_derek</dc:creator>
    <dc:date>2014-02-13T16:20:21Z</dc:date>
    <item>
      <title>text justification with in-line formatting in PDF</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/text-justification-with-in-line-formatting-in-PDF/m-p/173261#M12402</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm having a problem involving a spanning header. I want to produce a spanning header with "&lt;EM&gt;text1 &lt;/EM&gt;text2" on the left side of the page, and then "text3" at the right side of the page.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here's my COLUMNS statement:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;COLUMNS ("~{style [fontstyle=italic just=l] text1} text2 ~{style [just=r] text 3}" c1 c2 c3 c4 c5);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is left-justified, with text1 in italics and text2 in regular, but text3 follows immediately after As far as I can tell, the second JUST doesn't work. The in-line directive works (replace JUST=R with COLOR=RED and text3 turns red), but not with JUST. Is this a spanning header issue where the width of the table can't be determined in time to apply formatting?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Derek&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Feb 2014 16:20:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/text-justification-with-in-line-formatting-in-PDF/m-p/173261#M12402</guid>
      <dc:creator>cov_derek</dc:creator>
      <dc:date>2014-02-13T16:20:21Z</dc:date>
    </item>
    <item>
      <title>Re: text justification with in-line formatting in PDF</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/text-justification-with-in-line-formatting-in-PDF/m-p/173262#M12403</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; I think there are some attributes that PDF won't change in "midstream" or "mid-cell". You'd have to check with Tech Support to verify that. However, you could just split up the header so that text1 and text2 are above the first 3 columns and then text 3 is above the last 2 columns and if you split the spanning header into 2 cells, each cell can have different justification. See the attached screen shot. Program below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; If that won't work with you, then I recommend that you work with Tech Support.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cynthia&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;ods pdf file='c:\temp\just.pdf' style=printer notoc;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;ods escapechar='~';&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; proc report data=sashelp.class nowd;&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;&amp;nbsp;&amp;nbsp; COLUMNS ("~{style [fontstyle=italic just=l] text1 text2}" name age sex ) &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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ("~{style [just=r] text 3}"&amp;nbsp; height weight);&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; run;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;ods pdf close;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/10567i8B7D66C9DD2E9CF2/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="just_in_span_hdr.png" title="just_in_span_hdr.png" /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Feb 2014 18:22:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/text-justification-with-in-line-formatting-in-PDF/m-p/173262#M12403</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2014-02-13T18:22:32Z</dc:date>
    </item>
    <item>
      <title>Re: text justification with in-line formatting in PDF</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/text-justification-with-in-line-formatting-in-PDF/m-p/173263#M12404</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you, Cynthia. Hope y'all are safe and warm.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Feb 2014 18:37:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/text-justification-with-in-line-formatting-in-PDF/m-p/173263#M12404</guid>
      <dc:creator>cov_derek</dc:creator>
      <dc:date>2014-02-13T18:37:36Z</dc:date>
    </item>
  </channel>
</rss>

