<?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: PLS EXPLAIN CODING---Level 2 Practice:Subsetting by Multiple Condition&amp;amp;Creating a Sorted Tab in Programming 1 and 2</title>
    <link>https://communities.sas.com/t5/Programming-1-and-2/PLS-EXPLAIN-CODING-Level-2-Practice-Subsetting-by-Multiple/m-p/527187#M164</link>
    <description>thanks for the quick response. I have included other questions I have regarding the same practice Qs please review and respond when you have time.</description>
    <pubDate>Mon, 14 Jan 2019 23:54:35 GMT</pubDate>
    <dc:creator>melissagodfrey</dc:creator>
    <dc:date>2019-01-14T23:54:35Z</dc:date>
    <item>
      <title>PLS EXPLAIN CODING---Level 2 Practice:Subsetting by Multiple Condition&amp;Creating a Sorted Table</title>
      <link>https://communities.sas.com/t5/Programming-1-and-2/PLS-EXPLAIN-CODING-Level-2-Practice-Subsetting-by-Multiple/m-p/527178#M162</link>
      <description>&lt;P&gt;&lt;FONT color="#993366"&gt;Can someone please help me understand this&lt;/FONT&gt; &lt;FONT color="#FF00FF"&gt;coding solutions&lt;FONT color="#993366"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color="#993366"&gt;in&amp;nbsp;Lesson 4 preparing data 1st practice.&lt;/FONT&gt;&lt;FONT color="#99CCFF"&gt;&lt;FONT color="#993366"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;The practice session requested&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Write a DATA step to read the&lt;STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;pg1.np_species&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;table and create a new table named&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;fox&lt;/STRONG&gt;.&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;&lt;STRONG&gt;Note&lt;/STRONG&gt;: If you are using SAS Studio, try creating&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;fox&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;as a permanent table in the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;EPG194/output&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;folder.&lt;/LI&gt;&lt;LI&gt;Include only the rows where&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Category&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;is&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;Mammal&lt;/EM&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;and&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Common_Names&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;includes&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;Fox&lt;/EM&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;in any case.&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;Exclude the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Category&lt;/STRONG&gt;,&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Record_Status&lt;/STRONG&gt;,&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Occurrence&lt;/STRONG&gt;, and&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Nativeness&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;columns.&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#993366"&gt;My attempt to code the answer was&lt;SPAN&gt;:&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#00CCFF"&gt;data out.fox ;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#00CCFF"&gt;set PG1.NP_SPECIES;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#00CCFF"&gt;keep Category= Mammal and Common_Names like ("fox" "Fox" "FOX";&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#00CCFF"&gt;drop Category Record_Status Occurrence Nativeness;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#99CCFF"&gt;&lt;FONT color="#00CCFF"&gt;run;&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;solution:&lt;/FONT&gt;&lt;/P&gt;&lt;PRE&gt;data fox;
    set pg1.np_species;
    &lt;FONT color="#FF00FF"&gt;where Category='Mammal' and upcase(Common_Names) like '%FOX%'; &lt;/FONT&gt; 
    drop Category Record_Status Occurrence Nativeness;
run;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#993366"&gt;I am confused by when where statement require&amp;nbsp;' ' or " " and when they do not. I am also confused by&amp;nbsp;what the&amp;nbsp;&lt;/FONT&gt;upcase&lt;FONT color="#993366"&gt;&amp;nbsp;means. &lt;/FONT&gt;Lastly&lt;FONT color="#993366"&gt; I am confused why requesting the fox in any case, would = '%FOX%', as requesting the fox, in any case, has nothing to do with if there are letters before fox or after?&amp;nbsp;&lt;/FONT&gt;Also&lt;FONT color="#993366"&gt; I am confused by the next 2 steps.&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Notice that&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;Fox Squirrels&lt;/EM&gt;&lt;SPAN&gt;&amp;nbsp;are included in the output table. Add a condition in the WHERE statement to exclude rows that include&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;Squirrel&lt;/EM&gt;&lt;SPAN&gt;. Submit the program and verify the results.&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE&gt;data fox;
    set pg1.np_species;
    where Category='Mammal' and upcase(Common_Names) like '%FOX%' 
        &lt;STRONG&gt;and &lt;FONT color="#FF00FF"&gt;upcase(Common_Names) not like '%SQUIRREL%';&lt;/FONT&gt;&lt;/STRONG&gt;    
    drop Category Record_Status Occurrence Nativeness;
run;&lt;/PRE&gt;&lt;P&gt;&lt;FONT color="#993366"&gt;My Attempt:&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#00CCFF"&gt;data out.fox;&lt;BR /&gt;set PG1.NP_SPECIES;&lt;BR /&gt;where Category='Mammal' and upcase(Common_Names) like '%FOX%' and Common_Names not like '%squirrel%';&lt;BR /&gt;drop Category Record_Status Occurrence Nativeness;&lt;BR /&gt;run;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#993366"&gt;Why do you have to state upcase&amp;nbsp;(Common_Names) when typically you could just say varname&amp;nbsp;not like 'squirrel'. Also why is squirrel&amp;nbsp;written in capital letters, when it is not in capital letters in the table?&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;Last Step,&amp;nbsp;&lt;SPAN&gt;Sort the&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;fox&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;table by&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Common_Names&lt;/STRONG&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#993366"&gt;My attempt:&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#00CCFF"&gt;proc sort data=out.fox;&lt;BR /&gt;format Common_Names by fox;&lt;BR /&gt;run;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;STRONG&gt;proc sort &lt;FONT color="#FF00FF"&gt;data=fox&lt;/FONT&gt;;
    by Common_Names;
run;&lt;/STRONG&gt;&lt;/PRE&gt;&lt;P&gt;&lt;FONT color="#993366"&gt;I dont&amp;nbsp;understand how we all of a sudden have a fox table? when we only made an out.fox table above?&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#993366"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#993366"&gt;thanks for your time!&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 14 Jan 2019 23:47:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Programming-1-and-2/PLS-EXPLAIN-CODING-Level-2-Practice-Subsetting-by-Multiple/m-p/527178#M162</guid>
      <dc:creator>melissagodfrey</dc:creator>
      <dc:date>2019-01-14T23:47:20Z</dc:date>
    </item>
    <item>
      <title>Re: PLS EXPLAIN CODING---Level 2 Practice:Subsetting by Multiple Condition&amp;Creating a Sorted Tab</title>
      <link>https://communities.sas.com/t5/Programming-1-and-2/PLS-EXPLAIN-CODING-Level-2-Practice-Subsetting-by-Multiple/m-p/527182#M163</link>
      <description>&lt;P&gt;Your question is three fold, so here are three answers:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1) In this case it does not matter whether you use double or single quotes. When you work with macro variables, always use double quotes.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2) The&amp;nbsp;&lt;A href="https://documentation.sas.com/?docsetId=lefunctionsref&amp;amp;docsetTarget=p0ilulfezdl4ykn17295t8tnh4xc.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en" target="_self"&gt;Upcase Function&lt;/A&gt;&amp;nbsp;is used to consider the upcase version of the Common_Names variable to compare with&amp;nbsp;&lt;STRONG&gt;something&lt;/STRONG&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;3) .. And that&amp;nbsp;&lt;STRONG&gt;something&amp;nbsp;&lt;/STRONG&gt;is the string &lt;STRONG&gt;'%FOX%'&amp;nbsp;&lt;/STRONG&gt;where the percent sign is a wildcard operator representing any characters before or after the word 'fox'.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 14 Jan 2019 23:43:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Programming-1-and-2/PLS-EXPLAIN-CODING-Level-2-Practice-Subsetting-by-Multiple/m-p/527182#M163</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2019-01-14T23:43:00Z</dc:date>
    </item>
    <item>
      <title>Re: PLS EXPLAIN CODING---Level 2 Practice:Subsetting by Multiple Condition&amp;Creating a Sorted Tab</title>
      <link>https://communities.sas.com/t5/Programming-1-and-2/PLS-EXPLAIN-CODING-Level-2-Practice-Subsetting-by-Multiple/m-p/527187#M164</link>
      <description>thanks for the quick response. I have included other questions I have regarding the same practice Qs please review and respond when you have time.</description>
      <pubDate>Mon, 14 Jan 2019 23:54:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Programming-1-and-2/PLS-EXPLAIN-CODING-Level-2-Practice-Subsetting-by-Multiple/m-p/527187#M164</guid>
      <dc:creator>melissagodfrey</dc:creator>
      <dc:date>2019-01-14T23:54:35Z</dc:date>
    </item>
    <item>
      <title>Re: PLS EXPLAIN CODING---Level 2 Practice:Subsetting by Multiple Condition&amp;Creating a Sorted Tab</title>
      <link>https://communities.sas.com/t5/Programming-1-and-2/PLS-EXPLAIN-CODING-Level-2-Practice-Subsetting-by-Multiple/m-p/527193#M165</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/254067"&gt;@melissagodfrey&lt;/a&gt;, what other questions are you referring too? The sort ones?&lt;/P&gt;</description>
      <pubDate>Tue, 15 Jan 2019 00:50:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Programming-1-and-2/PLS-EXPLAIN-CODING-Level-2-Practice-Subsetting-by-Multiple/m-p/527193#M165</guid>
      <dc:creator>Panagiotis</dc:creator>
      <dc:date>2019-01-15T00:50:31Z</dc:date>
    </item>
    <item>
      <title>Re: PLS EXPLAIN CODING---Level 2 Practice:Subsetting by Multiple Condition&amp;Creating a Sorted Tab</title>
      <link>https://communities.sas.com/t5/Programming-1-and-2/PLS-EXPLAIN-CODING-Level-2-Practice-Subsetting-by-Multiple/m-p/527195#M166</link>
      <description>&lt;P&gt;Please do not edit your question to add additional content. Instead either, post a new question if it's different than your original question or post your new comments/ questions as a response if it relates to your original question.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This makes it really hard to understand a thread after the fact once the user is changing the original question.&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/254067"&gt;@melissagodfrey&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;thanks for the quick response. &lt;STRONG&gt;I have included other questions&lt;/STRONG&gt; I have regarding the same practice Qs please review and respond when you have time.&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Jan 2019 01:34:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Programming-1-and-2/PLS-EXPLAIN-CODING-Level-2-Practice-Subsetting-by-Multiple/m-p/527195#M166</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-01-15T01:34:16Z</dc:date>
    </item>
    <item>
      <title>Re: PLS EXPLAIN CODING---Level 2 Practice:Subsetting by Multiple Condition&amp;Creating a Sorted Tab</title>
      <link>https://communities.sas.com/t5/Programming-1-and-2/PLS-EXPLAIN-CODING-Level-2-Practice-Subsetting-by-Multiple/m-p/527197#M167</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;SPAN&gt;Why do you have to state upcase&amp;nbsp;(Common_Names) when typically you could just say varname&amp;nbsp;not like 'squirrel'. Also why is squirrel&amp;nbsp;written in capital letters, when it is not in capital letters in the table?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;SPAN&gt;Rather than check for all different case variations, you can make everything upper case and check it once&amp;nbsp;instead of checking for Fox, FOX, fOX, foX, fox, etc.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/254067"&gt;@melissagodfrey&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&lt;SPAN&gt;Notice that&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;Fox Squirrels&lt;/EM&gt;&lt;SPAN&gt;&amp;nbsp;are included in the output table. Add a condition in the WHERE statement to exclude rows that include&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;Squirrel&lt;/EM&gt;&lt;SPAN&gt;. Submit the program and verify the results.&lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE&gt;data fox;
    set pg1.np_species;
    where Category='Mammal' and upcase(Common_Names) like '%FOX%' 
        &lt;STRONG&gt;and &lt;FONT color="#FF00FF"&gt;upcase(Common_Names) not like '%SQUIRREL%';&lt;/FONT&gt;&lt;/STRONG&gt;    
    drop Category Record_Status Occurrence Nativeness;
run;&lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#993366"&gt;My Attempt:&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#00CCFF"&gt;data out.fox;&lt;BR /&gt;set PG1.NP_SPECIES;&lt;BR /&gt;where Category='Mammal' and upcase(Common_Names) like '%FOX%' and Common_Names not like '%squirrel%';&lt;BR /&gt;drop Category Record_Status Occurrence Nativeness;&lt;BR /&gt;run;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000000"&gt;Last Step,&amp;nbsp;&lt;SPAN&gt;Sort the&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;fox&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;table by&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Common_Names&lt;/STRONG&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#993366"&gt;My attempt:&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#00CCFF"&gt;proc sort data=out.fox;&lt;BR /&gt;format Common_Names by fox;&lt;BR /&gt;run;&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;STRONG&gt;proc sort &lt;FONT color="#FF00FF"&gt;data=fox&lt;/FONT&gt;;
    by Common_Names;
run;&lt;/STRONG&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#993366"&gt;I dont&amp;nbsp;understand how we all of a sudden have a fox table? when we only made an out.fox table above?&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#993366"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#993366"&gt;thanks for your time!&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;FONT color="#000000"&gt;You created out.fox but if you check the code you were supposed to run, it's only a data set called fox, not OUT.FOX.&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000000"&gt;It's possible there's a mistake in the course, but given what you've shown this seems&amp;nbsp;to be&amp;nbsp;the most likely issue.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Jan 2019 01:45:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Programming-1-and-2/PLS-EXPLAIN-CODING-Level-2-Practice-Subsetting-by-Multiple/m-p/527197#M167</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-01-15T01:45:18Z</dc:date>
    </item>
    <item>
      <title>Re: PLS EXPLAIN CODING---Level 2 Practice:Subsetting by Multiple Condition&amp;Creating a Sorted Tab</title>
      <link>https://communities.sas.com/t5/Programming-1-and-2/PLS-EXPLAIN-CODING-Level-2-Practice-Subsetting-by-Multiple/m-p/527512#M172</link>
      <description>hi there, thanks i certainly will in the future. actually panagiotis responded within 10 mins, i posted my question before i was done writing it and by the time i finished editting it the answer had already been written &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; i will certainly delete or rewrite in the future.</description>
      <pubDate>Tue, 15 Jan 2019 21:10:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Programming-1-and-2/PLS-EXPLAIN-CODING-Level-2-Practice-Subsetting-by-Multiple/m-p/527512#M172</guid>
      <dc:creator>melissagodfrey</dc:creator>
      <dc:date>2019-01-15T21:10:33Z</dc:date>
    </item>
    <item>
      <title>Re: PLS EXPLAIN CODING---Level 2 Practice:Subsetting by Multiple Condition&amp;Creating a Sorted Tab</title>
      <link>https://communities.sas.com/t5/Programming-1-and-2/PLS-EXPLAIN-CODING-Level-2-Practice-Subsetting-by-Multiple/m-p/527528#M173</link>
      <description>very helpful thanks</description>
      <pubDate>Tue, 15 Jan 2019 21:37:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Programming-1-and-2/PLS-EXPLAIN-CODING-Level-2-Practice-Subsetting-by-Multiple/m-p/527528#M173</guid>
      <dc:creator>melissagodfrey</dc:creator>
      <dc:date>2019-01-15T21:37:13Z</dc:date>
    </item>
  </channel>
</rss>

