<?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 right justify text using put statement in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/How-to-right-justify-text-using-put-statement/m-p/18651#M3702</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;He might be using a proportional font to view the ouput - this may cause the results to not line up visually.&amp;nbsp; See what happens when you use a fixed pitch font.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 28 Sep 2011 16:40:34 GMT</pubDate>
    <dc:creator>OS2Rules</dc:creator>
    <dc:date>2011-09-28T16:40:34Z</dc:date>
    <item>
      <title>How to right justify text using put statement</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-right-justify-text-using-put-statement/m-p/18647#M3698</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a report i'm creating that displays columns that have decimal data that is not even in length.&lt;/P&gt;&lt;P&gt;For example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;11.1111&lt;/P&gt;&lt;P&gt;2222.2222&lt;/P&gt;&lt;P&gt;3.3333&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to know how I can have it display where it right justifies the data&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 11.1111&lt;/P&gt;&lt;P&gt;2222.2222&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 3.3333&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried using formats which helped in some other scenarios but not this one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm currently just doing a put @1 decData&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm sending this to a text file using a filename statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help would be greatly appreciated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Sep 2011 15:32:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-right-justify-text-using-put-statement/m-p/18647#M3698</guid>
      <dc:creator>jerry898969</dc:creator>
      <dc:date>2011-09-28T15:32:41Z</dc:date>
    </item>
    <item>
      <title>How to right justify text using put statement</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-right-justify-text-using-put-statement/m-p/18648#M3699</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How about:&amp;nbsp;&amp;nbsp; put @1 decData 10.4;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Sep 2011 16:02:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-right-justify-text-using-put-statement/m-p/18648#M3699</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2011-09-28T16:02:32Z</dc:date>
    </item>
    <item>
      <title>How to right justify text using put statement</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-right-justify-text-using-put-statement/m-p/18649#M3700</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Art,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Thank you for your reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried using that format and it still doesn't line up.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I looking at maybe using the z format and have it fill the difference with zeros.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Sep 2011 16:19:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-right-justify-text-using-put-statement/m-p/18649#M3700</guid>
      <dc:creator>jerry898969</dc:creator>
      <dc:date>2011-09-28T16:19:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to right justify text using put statement</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-right-justify-text-using-put-statement/m-p/18650#M3701</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt; &lt;/SPAN&gt;Jerry,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I used it I ended up with a file that looked as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 11.1111&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; 2222.2222&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 3.3333&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Sep 2011 16:35:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-right-justify-text-using-put-statement/m-p/18650#M3701</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2011-09-28T16:35:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to right justify text using put statement</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-right-justify-text-using-put-statement/m-p/18651#M3702</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;He might be using a proportional font to view the ouput - this may cause the results to not line up visually.&amp;nbsp; See what happens when you use a fixed pitch font.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Sep 2011 16:40:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-right-justify-text-using-put-statement/m-p/18651#M3702</guid>
      <dc:creator>OS2Rules</dc:creator>
      <dc:date>2011-09-28T16:40:34Z</dc:date>
    </item>
    <item>
      <title>How to right justify text using put statement</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-right-justify-text-using-put-statement/m-p/18652#M3703</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Art,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried it again and it did work like I need it too.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Sep 2011 16:45:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-right-justify-text-using-put-statement/m-p/18652#M3703</guid>
      <dc:creator>jerry898969</dc:creator>
      <dc:date>2011-09-28T16:45:55Z</dc:date>
    </item>
  </channel>
</rss>

