<?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 to align the Title as Left and right? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-to-align-the-Title-as-Left-and-right/m-p/89410#M257205</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The JUSTIFY option will work only for ODS output options.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data temp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; date = today();&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ods html file='test.html';&lt;/P&gt;&lt;P&gt;title&amp;nbsp; justify=left 'Title goes left for HTML';&lt;/P&gt;&lt;P&gt;proc print;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;ods html close;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In order to justify in listing output please see the code snippet here &lt;A href="http://support.sas.com/kb/24/729.html" title="http://support.sas.com/kb/24/729.html"&gt;24729 - Right or left justify a title or footnote when CENTER is specified&lt;/A&gt; let me know if you have any questions.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 25 Jul 2013 11:27:04 GMT</pubDate>
    <dc:creator>arnouxvr</dc:creator>
    <dc:date>2013-07-25T11:27:04Z</dc:date>
    <item>
      <title>How to align the Title as Left and right?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-align-the-Title-as-Left-and-right/m-p/89405#M257200</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;And How to Print the program name and Path using Proc print?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Jul 2013 07:46:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-align-the-Title-as-Left-and-right/m-p/89405#M257200</guid>
      <dc:creator>Karan</dc:creator>
      <dc:date>2013-07-25T07:46:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to align the Title as Left and right?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-align-the-Title-as-Left-and-right/m-p/89406#M257201</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi try the JUSTIFY= option in the title for ods output formats.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example: TITLE 'Title goes here' justify=LEFT;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;other options is CENTER, LEFT and RIGHT&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Jul 2013 07:50:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-align-the-Title-as-Left-and-right/m-p/89406#M257201</guid>
      <dc:creator>arnouxvr</dc:creator>
      <dc:date>2013-07-25T07:50:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to align the Title as Left and right?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-align-the-Title-as-Left-and-right/m-p/89407#M257202</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you looking for a solution to dynamically print the program and path names?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't know if you can print the Path without entering the information in manually.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are using E.G. the macro variable &amp;amp;_CLIENTTASKLABEL; is created when you run your job and contains the program name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my case it returned 'Program7'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This may or may not be helpful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Jul 2013 07:51:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-align-the-Title-as-Left-and-right/m-p/89407#M257202</guid>
      <dc:creator>Scott_Mitchell</dc:creator>
      <dc:date>2013-07-25T07:51:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to align the Title as Left and right?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-align-the-Title-as-Left-and-right/m-p/89408#M257203</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is my code:&lt;/P&gt;&lt;P&gt;Proc print data=test10 ;&lt;/P&gt;&lt;P&gt;TITLE&amp;nbsp; "CUSTOMER DETAILS" justify=right;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This code displays the title in center only.. for right and left it displays in center only&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Jul 2013 10:30:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-align-the-Title-as-Left-and-right/m-p/89408#M257203</guid>
      <dc:creator>Karan</dc:creator>
      <dc:date>2013-07-25T10:30:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to align the Title as Left and right?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-align-the-Title-as-Left-and-right/m-p/89409#M257204</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How to print the path in manually?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Jul 2013 11:01:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-align-the-Title-as-Left-and-right/m-p/89409#M257204</guid>
      <dc:creator>Karan</dc:creator>
      <dc:date>2013-07-25T11:01:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to align the Title as Left and right?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-align-the-Title-as-Left-and-right/m-p/89410#M257205</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The JUSTIFY option will work only for ODS output options.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data temp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; date = today();&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ods html file='test.html';&lt;/P&gt;&lt;P&gt;title&amp;nbsp; justify=left 'Title goes left for HTML';&lt;/P&gt;&lt;P&gt;proc print;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;ods html close;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In order to justify in listing output please see the code snippet here &lt;A href="http://support.sas.com/kb/24/729.html" title="http://support.sas.com/kb/24/729.html"&gt;24729 - Right or left justify a title or footnote when CENTER is specified&lt;/A&gt; let me know if you have any questions.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Jul 2013 11:27:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-align-the-Title-as-Left-and-right/m-p/89410#M257205</guid>
      <dc:creator>arnouxvr</dc:creator>
      <dc:date>2013-07-25T11:27:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to align the Title as Left and right?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-align-the-Title-as-Left-and-right/m-p/89411#M257206</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How to print the program name and path manually and also using some keywords?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Jul 2013 12:01:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-align-the-Title-as-Left-and-right/m-p/89411#M257206</guid>
      <dc:creator>Karan</dc:creator>
      <dc:date>2013-07-25T12:01:31Z</dc:date>
    </item>
  </channel>
</rss>

