<?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: SAS Programming 3: Advanced Techniques -- Numeric Formats using Picture statement in Advanced Programming</title>
    <link>https://communities.sas.com/t5/Advanced-Programming/SAS-Programming-3-Advanced-Techniques-Numeric-Formats-using/m-p/929445#M262</link>
    <description>I am looking for a job position regarding my field ( statistics) and SAS programing. Please let me know if you find some!!</description>
    <pubDate>Thu, 23 May 2024 17:22:15 GMT</pubDate>
    <dc:creator>mshahbazi</dc:creator>
    <dc:date>2024-05-23T17:22:15Z</dc:date>
    <item>
      <title>SAS Programming 3: Advanced Techniques -- Numeric Formats using Picture statement</title>
      <link>https://communities.sas.com/t5/Advanced-Programming/SAS-Programming-3-Advanced-Techniques-Numeric-Formats-using/m-p/912582#M242</link>
      <description>&lt;P&gt;I'm just checking my understanding.&amp;nbsp; From what I understand, if the following is correct:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2024-01-22 at 8.34.45 PM.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/92882i18457DB234B6FB71/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screenshot 2024-01-22 at 8.34.45 PM.png" alt="Screenshot 2024-01-22 at 8.34.45 PM.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then is the following not correct?&amp;nbsp; My responses would have been:&amp;nbsp; 189.87%, 696.20% and 31.54%.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2024-01-22 at 8.34.55 PM.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/92883i0CA8CB4311E5ABF7/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screenshot 2024-01-22 at 8.34.55 PM.png" alt="Screenshot 2024-01-22 at 8.34.55 PM.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jan 2024 01:40:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Advanced-Programming/SAS-Programming-3-Advanced-Techniques-Numeric-Formats-using/m-p/912582#M242</guid>
      <dc:creator>TheresaM</dc:creator>
      <dc:date>2024-01-23T01:40:59Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Programming 3: Advanced Techniques -- Numeric Formats using Picture statement</title>
      <link>https://communities.sas.com/t5/Advanced-Programming/SAS-Programming-3-Advanced-Techniques-Numeric-Formats-using/m-p/912593#M243</link>
      <description>&lt;P&gt;In the program below&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc format ;
  picture mypct  low-high='009.99%'  (multiplier=100 ) ;
run;
data _null_;
  do percent=1.8987,6.6920,0.3165;
    put 'Default Format: ' percent=  @36 'Using mypct: ' (percent) (mypct.) ;
  end;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;the log shows:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;Default Format: percent=1.8987     Using mypct:   1.89%
Default Format: percent=6.692      Using mypct:   6.69%
Default Format: percent=0.3165     Using mypct:   0.31%
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Consider the first value (1.8987):&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;First, the "multiplier=100" option converts 1.8987 to 189.87&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;
&lt;LI&gt;Then remember that the picture will be &lt;EM&gt;&lt;STRONG&gt;applied only to digits to the left of the decimal point&lt;/STRONG&gt;&lt;/EM&gt;, i.e. only to 189.&amp;nbsp; I think this is where you are being thrown off.&amp;nbsp; Ignoring the digits after the post-multiplier decimal provides a way to treat 1.8987 the same as 1.8900 (which would become 189 under "multiplier=100").&amp;nbsp; &amp;nbsp;They both only have the same three digits to the left of the decimal point.&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;
&lt;LI&gt;Finally, applying '009.99%' picture to the digits 189, &lt;EM&gt;&lt;STRONG&gt;proceeding from right to left&lt;/STRONG&gt;&lt;/EM&gt;, yields 1.89%.&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can take a close look at the "multiplier=n" sections of&amp;nbsp;&lt;A href="https://support.sas.com/documentation/cdl/en/proc/61895/HTML/default/viewer.htm#a002473467.htm" target="_self"&gt;PICTURE Statement&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jan 2024 05:35:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Advanced-Programming/SAS-Programming-3-Advanced-Techniques-Numeric-Formats-using/m-p/912593#M243</guid>
      <dc:creator>mkeintz</dc:creator>
      <dc:date>2024-01-23T05:35:49Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Programming 3: Advanced Techniques -- Numeric Formats using Picture statement</title>
      <link>https://communities.sas.com/t5/Advanced-Programming/SAS-Programming-3-Advanced-Techniques-Numeric-Formats-using/m-p/912621#M244</link>
      <description>&lt;P&gt;Shorter answer: the 9 in a picture format is a digit &lt;STRONG&gt;selector&lt;/STRONG&gt;. So if the format selects ONE decimal place as in your '009.9' then it will only display one decimal place.&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jan 2024 10:09:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Advanced-Programming/SAS-Programming-3-Advanced-Techniques-Numeric-Formats-using/m-p/912621#M244</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2024-01-23T10:09:02Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Programming 3: Advanced Techniques -- Numeric Formats using Picture statement</title>
      <link>https://communities.sas.com/t5/Advanced-Programming/SAS-Programming-3-Advanced-Techniques-Numeric-Formats-using/m-p/928882#M258</link>
      <description>&lt;P&gt;Hi TheresaM,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope you're doing well. Could you introduce me a course's website or center that you participated for preparation SAS Advanced Exam A00-232. It would be appreciated to let me know by email &lt;A href="mailto:ashi@myself.com?" target="_blank"&gt;ashi@myself.com?&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 17 May 2024 22:12:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Advanced-Programming/SAS-Programming-3-Advanced-Techniques-Numeric-Formats-using/m-p/928882#M258</guid>
      <dc:creator>mshahbazi</dc:creator>
      <dc:date>2024-05-17T22:12:19Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Programming 3: Advanced Techniques -- Numeric Formats using Picture statement</title>
      <link>https://communities.sas.com/t5/Advanced-Programming/SAS-Programming-3-Advanced-Techniques-Numeric-Formats-using/m-p/928951#M259</link>
      <description>&lt;P&gt;Hi there!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am so incredibly happy and relieved to have passed the Advanced exam!&amp;nbsp; Let me see if I can recall everything I did.&amp;nbsp; Primarily, I took the advice from others here and studied&amp;nbsp;EVERYTHING listed in the Advanced Programming Professional section of the exam prep resources listed here:&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;A href="https://www.sas.com/en_us/certification/training-exam-preparation.html#962b715a-0b93-4df7-afad-35e7e8f352c8" target="_blank"&gt;https://www.sas.com/en_us/certification/training-exam-preparation.html#962b715a-0b93-4df7-afad-35e7e8f352c8&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I also read these books cover to cover, and did all the questions that were in the books:&lt;/P&gt;
&lt;P class="p1"&gt;* SAS Certified Professional Prep Guide: Advanced Programming Using SAS 9.4&lt;/P&gt;
&lt;P class="p1"&gt;* The Little SAS Book (used primarily for BASE SAS test but reread it when taking advanced exam)&lt;/P&gt;
&lt;P class="p2"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="p1"&gt;I also took the practice exam a dozen times.&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &lt;/SPAN&gt;It’s always the same exam so at some point it’s less useful, but the questions are very similar to the questions you’ll see in the exam.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P class="p1"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="p1"&gt;I'll email you this info directly too.&amp;nbsp; Best of luck to you!!&lt;/P&gt;
&lt;P class="p1"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="p1"&gt;-Theresa&lt;/P&gt;</description>
      <pubDate>Sun, 19 May 2024 15:26:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Advanced-Programming/SAS-Programming-3-Advanced-Techniques-Numeric-Formats-using/m-p/928951#M259</guid>
      <dc:creator>TheresaM</dc:creator>
      <dc:date>2024-05-19T15:26:28Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Programming 3: Advanced Techniques -- Numeric Formats using Picture statement</title>
      <link>https://communities.sas.com/t5/Advanced-Programming/SAS-Programming-3-Advanced-Techniques-Numeric-Formats-using/m-p/929336#M260</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your response. I passed the SAS advanced performance-based A00-232 in my first attempt.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 23 May 2024 04:23:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Advanced-Programming/SAS-Programming-3-Advanced-Techniques-Numeric-Formats-using/m-p/929336#M260</guid>
      <dc:creator>mshahbazi</dc:creator>
      <dc:date>2024-05-23T04:23:07Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Programming 3: Advanced Techniques -- Numeric Formats using Picture statement</title>
      <link>https://communities.sas.com/t5/Advanced-Programming/SAS-Programming-3-Advanced-Techniques-Numeric-Formats-using/m-p/929426#M261</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/263074"&gt;@mshahbazi&lt;/a&gt;&amp;nbsp;, that's awesome!!&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":party_popper:"&gt;🎉&lt;/span&gt;&amp;nbsp; Happy to hear, and thanks for letting us know! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 23 May 2024 16:29:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Advanced-Programming/SAS-Programming-3-Advanced-Techniques-Numeric-Formats-using/m-p/929426#M261</guid>
      <dc:creator>TheresaM</dc:creator>
      <dc:date>2024-05-23T16:29:54Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Programming 3: Advanced Techniques -- Numeric Formats using Picture statement</title>
      <link>https://communities.sas.com/t5/Advanced-Programming/SAS-Programming-3-Advanced-Techniques-Numeric-Formats-using/m-p/929445#M262</link>
      <description>I am looking for a job position regarding my field ( statistics) and SAS programing. Please let me know if you find some!!</description>
      <pubDate>Thu, 23 May 2024 17:22:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Advanced-Programming/SAS-Programming-3-Advanced-Techniques-Numeric-Formats-using/m-p/929445#M262</guid>
      <dc:creator>mshahbazi</dc:creator>
      <dc:date>2024-05-23T17:22:15Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Programming 3: Advanced Techniques -- Numeric Formats using Picture statement</title>
      <link>https://communities.sas.com/t5/Advanced-Programming/SAS-Programming-3-Advanced-Techniques-Numeric-Formats-using/m-p/929450#M263</link>
      <description>&lt;P&gt;It's difficult!&amp;nbsp; I am still looking for a SAS job myself.&amp;nbsp; But it sounds like you have more relevant background than I do. Look for some &lt;A href="https://www.sas.com/en_us/events.html#users-groups" target="_self"&gt;SAS Users Groups&lt;/A&gt; in your area -- that might help in terms of networking. I attended the Boston Area SAS Users Group conference last fall and met a lot of really nice, helpful people and saw some great presentations. Also, put a post on your LinkedIn that you are looking for a SAS-related job. Someone in your network might be able to refer you to a job.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best of luck to us both! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 23 May 2024 18:11:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Advanced-Programming/SAS-Programming-3-Advanced-Techniques-Numeric-Formats-using/m-p/929450#M263</guid>
      <dc:creator>TheresaM</dc:creator>
      <dc:date>2024-05-23T18:11:11Z</dc:date>
    </item>
  </channel>
</rss>

