<?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 Printing trailing zeros on file in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Printing-trailing-zeros-on-file/m-p/444741#M111386</link>
    <description>&lt;P&gt;In my mainframe file I have one numeric field&amp;nbsp;00000008431.00, I want to print as it is on my file using SAS but no informat in my knowledge is doing that.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Used ZD15.2 (No luck); PD (I want values in normal display format); 15.2 (It is printing without zeros i.e.&amp;nbsp;&lt;SPAN&gt;8431.00).&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Which informat will be useful for this?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Input&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Desired Output&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;00000008431.00&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;00000008431.00&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 12 Mar 2018 13:33:48 GMT</pubDate>
    <dc:creator>SASInd</dc:creator>
    <dc:date>2018-03-12T13:33:48Z</dc:date>
    <item>
      <title>Printing trailing zeros on file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Printing-trailing-zeros-on-file/m-p/444741#M111386</link>
      <description>&lt;P&gt;In my mainframe file I have one numeric field&amp;nbsp;00000008431.00, I want to print as it is on my file using SAS but no informat in my knowledge is doing that.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Used ZD15.2 (No luck); PD (I want values in normal display format); 15.2 (It is printing without zeros i.e.&amp;nbsp;&lt;SPAN&gt;8431.00).&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Which informat will be useful for this?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Input&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Desired Output&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;00000008431.00&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;00000008431.00&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 12 Mar 2018 13:33:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Printing-trailing-zeros-on-file/m-p/444741#M111386</guid>
      <dc:creator>SASInd</dc:creator>
      <dc:date>2018-03-12T13:33:48Z</dc:date>
    </item>
    <item>
      <title>Re: Printing trailing zeros on file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Printing-trailing-zeros-on-file/m-p/444751#M111393</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;informats are for reading values.&lt;/P&gt;
&lt;P&gt;Use formats to control how your output is displayed.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
informat x 14.2;
format x z14.2;
input x;

put x;

cards;
00000008431.00
;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 12 Mar 2018 13:48:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Printing-trailing-zeros-on-file/m-p/444751#M111393</guid>
      <dc:creator>gamotte</dc:creator>
      <dc:date>2018-03-12T13:48:47Z</dc:date>
    </item>
  </channel>
</rss>

