<?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 System Options in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/System-Options/m-p/252469#M47927</link>
    <description>&lt;P&gt;MAXDEC=2&amp;nbsp;&lt;/P&gt;&lt;P&gt;this will give numbers upto 2 decimal places or 1?&lt;/P&gt;</description>
    <pubDate>Thu, 25 Feb 2016 18:24:53 GMT</pubDate>
    <dc:creator>Bulleride</dc:creator>
    <dc:date>2016-02-25T18:24:53Z</dc:date>
    <item>
      <title>System Options</title>
      <link>https://communities.sas.com/t5/SAS-Programming/System-Options/m-p/252469#M47927</link>
      <description>&lt;P&gt;MAXDEC=2&amp;nbsp;&lt;/P&gt;&lt;P&gt;this will give numbers upto 2 decimal places or 1?&lt;/P&gt;</description>
      <pubDate>Thu, 25 Feb 2016 18:24:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/System-Options/m-p/252469#M47927</guid>
      <dc:creator>Bulleride</dc:creator>
      <dc:date>2016-02-25T18:24:53Z</dc:date>
    </item>
    <item>
      <title>Re: System Options</title>
      <link>https://communities.sas.com/t5/SAS-Programming/System-Options/m-p/252523#M47967</link>
      <description>&lt;P&gt;First, MAXDEC is not System option. System options are instructions that affect your SAS session. You can check them here: &lt;A href="http://support.sas.com/documentation/cdl/en/lrdict/64316/HTML/default/viewer.htm#a000309878.htm" target="_self"&gt;SAS System Options&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;MAXDEC is one of PROC MEANS statment options. You can find detials about it in PROC MEANS documentaions &lt;A href="http://support.sas.com/documentation/cdl/en/proc/61895/HTML/default/viewer.htm#a000146729.htm" target="_self"&gt;here&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And let suppose you went through the doc and you did not understand, Why do not you run this option in simple SAS code and test it by yourself.&lt;/P&gt;
&lt;P&gt;For example run the following steps and change the value of maxdec and know by yourself:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data cake;
   input LastName $ 1-12 Age 13-14 PresentScore 16-17 
         TasteScore 19-20 Flavor $ 23-32 Layers 34 ;
   datalines;
Orlando     27 93 80  Vanilla    1
Ramey       32 84 72  Rum        2
Goldston    46 68 75  Vanilla    1
;


proc means data=cake n mean max min range std fw=8 maxdec=2;
   var PresentScore TasteScore;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;You are welcome to ask anytime, but do more effort to find the answer by yourself or at least in writing your question.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;All the best!!!&lt;/P&gt;</description>
      <pubDate>Thu, 25 Feb 2016 19:54:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/System-Options/m-p/252523#M47967</guid>
      <dc:creator>mohamed_zaki</dc:creator>
      <dc:date>2016-02-25T19:54:37Z</dc:date>
    </item>
  </channel>
</rss>

