<?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 Need help with the sas code for specifying all numerical variables in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Need-help-with-the-sas-code-for-specifying-all-numerical/m-p/533401#M146230</link>
    <description>&lt;PRE&gt;data dummy;&lt;BR /&gt;input q1 q3 q4 q2 q6$ bu$ q5;&lt;BR /&gt;cards;&lt;BR /&gt;1 2 3 5 sa an 3&lt;BR /&gt;2 4 3 6 sm sa 4&lt;BR /&gt;6 5 3 8 cb na 3&lt;BR /&gt;;&lt;BR /&gt;proc print;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;data dummy1 (drop= q1--q5);&lt;BR /&gt;set dummy;&lt;BR /&gt;sum=sum(of_numeric_);&lt;BR /&gt;proc print;&lt;BR /&gt;run;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Need help with this code. I'm getting a blank output for the sum variable.&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks,&lt;BR /&gt;Mohan&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 06 Feb 2019 21:39:32 GMT</pubDate>
    <dc:creator>mdoddala</dc:creator>
    <dc:date>2019-02-06T21:39:32Z</dc:date>
    <item>
      <title>Need help with the sas code for specifying all numerical variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Need-help-with-the-sas-code-for-specifying-all-numerical/m-p/533401#M146230</link>
      <description>&lt;PRE&gt;data dummy;&lt;BR /&gt;input q1 q3 q4 q2 q6$ bu$ q5;&lt;BR /&gt;cards;&lt;BR /&gt;1 2 3 5 sa an 3&lt;BR /&gt;2 4 3 6 sm sa 4&lt;BR /&gt;6 5 3 8 cb na 3&lt;BR /&gt;;&lt;BR /&gt;proc print;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;data dummy1 (drop= q1--q5);&lt;BR /&gt;set dummy;&lt;BR /&gt;sum=sum(of_numeric_);&lt;BR /&gt;proc print;&lt;BR /&gt;run;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Need help with this code. I'm getting a blank output for the sum variable.&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks,&lt;BR /&gt;Mohan&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Feb 2019 21:39:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Need-help-with-the-sas-code-for-specifying-all-numerical/m-p/533401#M146230</guid>
      <dc:creator>mdoddala</dc:creator>
      <dc:date>2019-02-06T21:39:32Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with the sas code for specifying all numerical variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Need-help-with-the-sas-code-for-specifying-all-numerical/m-p/533403#M146232</link>
      <description>&lt;P&gt;Hi and welcome to the SAS Communities &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Use an Array Statement to get all numeric variables and sum over the array&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data dummy;
input q1 q3 q4 q2 q6$ bu$ q5;
cards;
1 2 3 5 sa an 3
2 4 3 6 sm sa 4
6 5 3 8 cb na 3
;

data dummy1;
   set dummy;
   array nums[*] _numeric_; 
   sum=sum(of nums[*]);
run;

proc print;
run;&lt;/CODE&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Feb 2019 21:43:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Need-help-with-the-sas-code-for-specifying-all-numerical/m-p/533403#M146232</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2019-02-06T21:43:16Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with the sas code for specifying all numerical variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Need-help-with-the-sas-code-for-specifying-all-numerical/m-p/533405#M146233</link>
      <description>&lt;P&gt;Is it wrong to use of_numeric_?&lt;/P&gt;</description>
      <pubDate>Wed, 06 Feb 2019 21:43:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Need-help-with-the-sas-code-for-specifying-all-numerical/m-p/533405#M146233</guid>
      <dc:creator>mdoddala</dc:creator>
      <dc:date>2019-02-06T21:43:26Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with the sas code for specifying all numerical variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Need-help-with-the-sas-code-for-specifying-all-numerical/m-p/533406#M146234</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/257739"&gt;@mdoddala&lt;/a&gt;&amp;nbsp; &amp;nbsp;Your code is fine and works well.. just a typo&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;
data dummy;
input q1 q3 q4 q2 q6$ bu$ q5;
cards;
1 2 3 5 sa an 3
2 4 3 6 sm sa 4
6 5 3 8 cb na 3
;


data dummy1 (drop= q1--q5);
set dummy;
sum=sum(of _numeric_);
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The typo was&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;sum=sum(of_numeric_);&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;instead of&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;sum=sum(of _numeric_);&lt;/PRE&gt;</description>
      <pubDate>Wed, 06 Feb 2019 21:45:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Need-help-with-the-sas-code-for-specifying-all-numerical/m-p/533406#M146234</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2019-02-06T21:45:21Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with the sas code for specifying all numerical variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Need-help-with-the-sas-code-for-specifying-all-numerical/m-p/533408#M146235</link>
      <description>&lt;P&gt;No. Not at all. Just an alternative &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; Your code works well too if you correct a small typo:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data dummy;
input q1 q3 q4 q2 q6$ bu$ q5;
cards;
1 2 3 5 sa an 3
2 4 3 6 sm sa 4
6 5 3 8 cb na 3
;

data dummy1;
   set dummy;
   sum=sum(of _numeric_);
run;

proc print;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 06 Feb 2019 21:46:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Need-help-with-the-sas-code-for-specifying-all-numerical/m-p/533408#M146235</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2019-02-06T21:46:12Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with the sas code for specifying all numerical variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Need-help-with-the-sas-code-for-specifying-all-numerical/m-p/533409#M146236</link>
      <description>&lt;P&gt;Thank you so much&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/138205"&gt;@novinosrin&lt;/a&gt;&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; for pointing out my mistake.&lt;/P&gt;</description>
      <pubDate>Wed, 06 Feb 2019 21:47:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Need-help-with-the-sas-code-for-specifying-all-numerical/m-p/533409#M146236</guid>
      <dc:creator>mdoddala</dc:creator>
      <dc:date>2019-02-06T21:47:46Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with the sas code for specifying all numerical variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Need-help-with-the-sas-code-for-specifying-all-numerical/m-p/533410#M146237</link>
      <description>&lt;P&gt;You are welcome!&lt;/P&gt;</description>
      <pubDate>Wed, 06 Feb 2019 21:48:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Need-help-with-the-sas-code-for-specifying-all-numerical/m-p/533410#M146237</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2019-02-06T21:48:26Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with the sas code for specifying all numerical variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Need-help-with-the-sas-code-for-specifying-all-numerical/m-p/533411#M146238</link>
      <description>&lt;P&gt;Thank you&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/31304"&gt;@PeterClemmensen&lt;/a&gt;&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Feb 2019 21:48:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Need-help-with-the-sas-code-for-specifying-all-numerical/m-p/533411#M146238</guid>
      <dc:creator>mdoddala</dc:creator>
      <dc:date>2019-02-06T21:48:57Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with the sas code for specifying all numerical variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Need-help-with-the-sas-code-for-specifying-all-numerical/m-p/533414#M146240</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/257739"&gt;@mdoddala&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Acknowledge&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/138205"&gt;@novinosrin&lt;/a&gt;&amp;nbsp; 's answer by marking the answer as accepted though I don't think somebody who is prolific with &lt;STRONG&gt;super user&lt;/STRONG&gt; status cares for credits. But that's ethic. That was a sharp catch.&lt;/P&gt;</description>
      <pubDate>Wed, 06 Feb 2019 21:55:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Need-help-with-the-sas-code-for-specifying-all-numerical/m-p/533414#M146240</guid>
      <dc:creator>Andygray</dc:creator>
      <dc:date>2019-02-06T21:55:27Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with the sas code for specifying all numerical variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Need-help-with-the-sas-code-for-specifying-all-numerical/m-p/533415#M146241</link>
      <description>&lt;P&gt;I just did that:)&lt;/P&gt;</description>
      <pubDate>Wed, 06 Feb 2019 21:56:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Need-help-with-the-sas-code-for-specifying-all-numerical/m-p/533415#M146241</guid>
      <dc:creator>mdoddala</dc:creator>
      <dc:date>2019-02-06T21:56:52Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with the sas code for specifying all numerical variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Need-help-with-the-sas-code-for-specifying-all-numerical/m-p/533416#M146242</link>
      <description>&lt;P&gt;Also&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/138205"&gt;@novinosrin&lt;/a&gt;&amp;nbsp;, what are the other ways I can use of _numeric_? Is it possible to use in proc print statement? Please let me know. Thank you very much again for your help:)&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Feb 2019 22:03:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Need-help-with-the-sas-code-for-specifying-all-numerical/m-p/533416#M146242</guid>
      <dc:creator>mdoddala</dc:creator>
      <dc:date>2019-02-06T22:03:26Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with the sas code for specifying all numerical variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Need-help-with-the-sas-code-for-specifying-all-numerical/m-p/533419#M146243</link>
      <description>&lt;P&gt;I assume other ways meaning other scenarios&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Yes anywhere &lt;STRONG&gt;variable lists usage &lt;/STRONG&gt;is permitted&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;for example&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc print data=dummy;
var _numeric_;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc print data=dummy(keep=_numeric_);
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;and so on and so forth&lt;/P&gt;</description>
      <pubDate>Wed, 06 Feb 2019 22:04:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Need-help-with-the-sas-code-for-specifying-all-numerical/m-p/533419#M146243</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2019-02-06T22:04:27Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with the sas code for specifying all numerical variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Need-help-with-the-sas-code-for-specifying-all-numerical/m-p/533420#M146244</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data dummy;
input q1 q3 q4 q2 q6$ bu$ q5;
cards;
1 2 3 5 sa an 3
2 4 3 6 sm sa 4
6 5 3 8 cb na 3
;


data dummychar(keep=_char_) dummynumeric(keep=_numeric_);
set dummy;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 06 Feb 2019 22:06:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Need-help-with-the-sas-code-for-specifying-all-numerical/m-p/533420#M146244</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2019-02-06T22:06:28Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with the sas code for specifying all numerical variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Need-help-with-the-sas-code-for-specifying-all-numerical/m-p/533422#M146246</link>
      <description>Thank you so much &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/138205"&gt;@novinosrin&lt;/a&gt; for enlightening me:)</description>
      <pubDate>Wed, 06 Feb 2019 22:08:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Need-help-with-the-sas-code-for-specifying-all-numerical/m-p/533422#M146246</guid>
      <dc:creator>mdoddala</dc:creator>
      <dc:date>2019-02-06T22:08:01Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with the sas code for specifying all numerical variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Need-help-with-the-sas-code-for-specifying-all-numerical/m-p/533431#M146248</link>
      <description>&lt;P&gt;Also&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/138205"&gt;@novinosrin&lt;/a&gt;, what books do you suggest for beginners like me to become an expert in SAS programming and how long will it take to become an expert?&lt;/P&gt;</description>
      <pubDate>Wed, 06 Feb 2019 22:33:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Need-help-with-the-sas-code-for-specifying-all-numerical/m-p/533431#M146248</guid>
      <dc:creator>mdoddala</dc:creator>
      <dc:date>2019-02-06T22:33:32Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with the sas code for specifying all numerical variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Need-help-with-the-sas-code-for-specifying-all-numerical/m-p/533435#M146249</link>
      <description>&lt;P&gt;Certainly I can suggest books but expertise I don't know how long. I think that's up to the individual.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV class="parsys_column cq-colctrl-lt1-c0"&gt;
&lt;DIV class="image parbase section"&gt;
&lt;DIV id="cq-image-jsp-/content/support/en/books/reference-books/learning-sas-by-example-a-programmers-guide-second-edition/jcr:content/par/styledcontainer/par/image_a28d" class="  "&gt;&lt;IMG class="cq-dd-image" src="https://support.sas.com/en/books/reference-books/learning-sas-by-example-a-programmers-guide-second-edition/_jcr_content/par/styledcontainer/par/image_a28d.img.jpg/1527857817250.jpg" border="0" alt="Learning SAS by Example: A Programmer's Guide, Second Edition" title="Learning SAS by Example: A Programmer's Guide, Second Edition" /&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;DIV class="icon parbase section"&gt;
&lt;DIV class=""&gt;
&lt;DIV class="svg  none" data-fillcolor="000000" data-height="75"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;DIV class="text parbase section"&gt;
&lt;DIV class=""&gt;
&lt;P&gt;&lt;SPAN class="xsmall-txt-light"&gt;&lt;A href="https://www.sas.com/en_us/software/university-edition.html" target="_blank"&gt;SAS&lt;SUP&gt;®&lt;/SUP&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;University Edition Compatible&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;DIV class="parsys_column cq-colctrl-lt1-c1"&gt;
&lt;DIV class="text parbase section"&gt;
&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;DIV class="text parbase section"&gt;
&lt;DIV class=""&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The same question was asked by another user&amp;nbsp; &amp;nbsp;&lt;SPAN&gt;&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/213838"&gt;@new_sas_user_4&lt;/a&gt;&amp;nbsp; while ago&amp;nbsp; And again, I will point you to&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/14323"&gt;@ShelleySessoms&lt;/a&gt;&amp;nbsp; for the best advice on what SAS press can offer.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Wed, 06 Feb 2019 22:39:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Need-help-with-the-sas-code-for-specifying-all-numerical/m-p/533435#M146249</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2019-02-06T22:39:39Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with the sas code for specifying all numerical variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Need-help-with-the-sas-code-for-specifying-all-numerical/m-p/533439#M146250</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/257739"&gt;@mdoddala&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;EXPERT level:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;High performance coding&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Get hold of&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;A href="https://www.amazon.com/High-Performance-SAS-Coding-Christian-Graffeuille/dp/1512397490" target="_blank"&gt;https://www.amazon.com/High-Performance-SAS-Coding-Christian-Graffeuille/dp/1512397490&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Sir&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/16961"&gt;@ChrisNZ&lt;/a&gt;&amp;nbsp; Would that be overwhelming for OP or can manage with slow reading ?&lt;/P&gt;</description>
      <pubDate>Wed, 06 Feb 2019 22:47:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Need-help-with-the-sas-code-for-specifying-all-numerical/m-p/533439#M146250</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2019-02-06T22:47:14Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with the sas code for specifying all numerical variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Need-help-with-the-sas-code-for-specifying-all-numerical/m-p/533440#M146251</link>
      <description>&lt;P&gt;Thank you&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/138205"&gt;@novinosrin&lt;/a&gt;&amp;nbsp;for the prompt response:)&lt;/P&gt;</description>
      <pubDate>Wed, 06 Feb 2019 22:50:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Need-help-with-the-sas-code-for-specifying-all-numerical/m-p/533440#M146251</guid>
      <dc:creator>mdoddala</dc:creator>
      <dc:date>2019-02-06T22:50:07Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with the sas code for specifying all numerical variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Need-help-with-the-sas-code-for-specifying-all-numerical/m-p/533455#M146253</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/138205"&gt;@novinosrin&lt;/a&gt;&amp;nbsp;&amp;nbsp;Thank you so much for the recommendation. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;The link to the latest edition is&amp;nbsp;&lt;A href="https://www.amazon.com/gp/product/179345647X" target="_blank"&gt;https://www.amazon.com/gp/product/179345647X&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Some chapters are readily accessible to non-advanced users like &lt;EM&gt;common-sense&lt;/EM&gt; or &lt;EM&gt;proc sort&lt;/EM&gt;. Others are an opportunity to learn. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Feb 2019 00:59:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Need-help-with-the-sas-code-for-specifying-all-numerical/m-p/533455#M146253</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2019-02-07T00:59:57Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with the sas code for specifying all numerical variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Need-help-with-the-sas-code-for-specifying-all-numerical/m-p/533566#M146303</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/257739"&gt;@mdoddala&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/138205"&gt;@novinosrin&lt;/a&gt;&amp;nbsp;has recommended the two books I would recommend.&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/16961"&gt;@ChrisNZ&lt;/a&gt;&amp;nbsp;'s book is excellent, as is anything by Ron Cody. You can't go wrong with either.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best of luck to you,&lt;/P&gt;
&lt;P&gt;Shelley&lt;/P&gt;</description>
      <pubDate>Thu, 07 Feb 2019 12:31:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Need-help-with-the-sas-code-for-specifying-all-numerical/m-p/533566#M146303</guid>
      <dc:creator>ShelleySessoms</dc:creator>
      <dc:date>2019-02-07T12:31:55Z</dc:date>
    </item>
  </channel>
</rss>

