<?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: Error: At least one W.D format was too small for the number to be printed. in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Error-At-least-one-W-D-format-was-too-small-for-the-number-to-be/m-p/435347#M108162</link>
    <description>&lt;P&gt;1) NOT an error&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Check the values of your numeric variables for those less than 0.001 or 0.0001 (for the 8.4). I would guess that a StdDev is a likely culprit. Or &lt;SPAN class="token function"&gt;sqrt&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;exp&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;LN_QVAL_StdDev&lt;SPAN class="token operator"&gt;**&lt;/SPAN&gt;&lt;SPAN class="token number"&gt;2&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token number"&gt;-1&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;*&lt;/SPAN&gt;&lt;SPAN class="token number"&gt;100&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc means data=table3 min;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; var _numeric_;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;might give you a starting point.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Or print your output and find the results with more leading zeroes such as&amp;nbsp; 0.0000123&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And why are you assigning a format of $200&amp;nbsp;for variables that should only have&amp;nbsp;8 characters length with the put function?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can avoid all those Strip calls if you use put(variable,8.3 -L) to left align the output.&lt;/P&gt;</description>
    <pubDate>Thu, 08 Feb 2018 22:21:09 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2018-02-08T22:21:09Z</dc:date>
    <item>
      <title>Error: At least one W.D format was too small for the number to be printed.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Error-At-least-one-W-D-format-was-too-small-for-the-number-to-be/m-p/435335#M108153</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could you please help to "decrypt" the following error:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;NOTE: At least one W.D format was too small for the number to be printed. The decimal may be shifted by the "BEST" format.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;How to define what is the format that is 'smal'. I have here at least 10.&lt;/P&gt;</description>
      <pubDate>Mon, 05 Mar 2018 18:13:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Error-At-least-one-W-D-format-was-too-small-for-the-number-to-be/m-p/435335#M108153</guid>
      <dc:creator>DmytroYermak</dc:creator>
      <dc:date>2018-03-05T18:13:33Z</dc:date>
    </item>
    <item>
      <title>Re: Error: At least one W.D format was too small for the number to be printed.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Error-At-least-one-W-D-format-was-too-small-for-the-number-to-be/m-p/435340#M108156</link>
      <description>&lt;P&gt;Comment out half your code and run it. If the error persists, its in the half not commented out.&amp;nbsp;&lt;BR /&gt;Rinse and repeat.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Feb 2018 16:46:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Error-At-least-one-W-D-format-was-too-small-for-the-number-to-be/m-p/435340#M108156</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-02-08T16:46:10Z</dc:date>
    </item>
    <item>
      <title>Re: Error: At least one W.D format was too small for the number to be printed.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Error-At-least-one-W-D-format-was-too-small-for-the-number-to-be/m-p/435342#M108158</link>
      <description>&lt;P&gt;There are only 68 observations.&amp;nbsp; Print out the ???_C variables and look for values that look funny.&lt;/P&gt;</description>
      <pubDate>Thu, 08 Feb 2018 16:50:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Error-At-least-one-W-D-format-was-too-small-for-the-number-to-be/m-p/435342#M108158</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2018-02-08T16:50:41Z</dc:date>
    </item>
    <item>
      <title>Re: Error: At least one W.D format was too small for the number to be printed.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Error-At-least-one-W-D-format-was-too-small-for-the-number-to-be/m-p/435347#M108162</link>
      <description>&lt;P&gt;1) NOT an error&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Check the values of your numeric variables for those less than 0.001 or 0.0001 (for the 8.4). I would guess that a StdDev is a likely culprit. Or &lt;SPAN class="token function"&gt;sqrt&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;exp&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;LN_QVAL_StdDev&lt;SPAN class="token operator"&gt;**&lt;/SPAN&gt;&lt;SPAN class="token number"&gt;2&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token number"&gt;-1&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;*&lt;/SPAN&gt;&lt;SPAN class="token number"&gt;100&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc means data=table3 min;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; var _numeric_;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;might give you a starting point.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Or print your output and find the results with more leading zeroes such as&amp;nbsp; 0.0000123&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And why are you assigning a format of $200&amp;nbsp;for variables that should only have&amp;nbsp;8 characters length with the put function?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can avoid all those Strip calls if you use put(variable,8.3 -L) to left align the output.&lt;/P&gt;</description>
      <pubDate>Thu, 08 Feb 2018 22:21:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Error-At-least-one-W-D-format-was-too-small-for-the-number-to-be/m-p/435347#M108162</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-02-08T22:21:09Z</dc:date>
    </item>
  </channel>
</rss>

