<?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: selecting specific values in a data set in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/selecting-specific-values-in-a-data-set/m-p/717053#M27484</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I did this approach&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data over under;
    set test;
    if method= "close contact" | capacity&amp;gt;  400 then output over;
    else if capacity&amp;lt;= 400 then output under;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;But I still get some close contact places&amp;nbsp; that has a capacity over 400 in the over dataset. But it should be really be in the under dataset, as the normal place for that close contact place has a capacity under 400?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So if i have this kindof data:&lt;/P&gt;
&lt;TABLE border="1" width="56.233822260569454%"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="25%"&gt;Test place&lt;/TD&gt;
&lt;TD width="25%"&gt;Method&lt;/TD&gt;
&lt;TD width="25%"&gt;capacity&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="25%"&gt;test place toronto&lt;/TD&gt;
&lt;TD width="25%"&gt;Normal&lt;/TD&gt;
&lt;TD width="25%"&gt;23&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="25%"&gt;test place toronto&amp;nbsp;&lt;/TD&gt;
&lt;TD width="25%"&gt;close contact&lt;/TD&gt;
&lt;TD width="25%"&gt;455&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;then these to testplaces should be in the UNDER dataset as the normal is under 400.&lt;/P&gt;
&lt;P&gt;how can I correct for that?&lt;/P&gt;</description>
    <pubDate>Fri, 05 Feb 2021 12:22:01 GMT</pubDate>
    <dc:creator>mmea</dc:creator>
    <dc:date>2021-02-05T12:22:01Z</dc:date>
    <item>
      <title>selecting specific values in a data set</title>
      <link>https://communities.sas.com/t5/New-SAS-User/selecting-specific-values-in-a-data-set/m-p/716167#M27415</link>
      <description>&lt;P&gt;Hi if I have a data set like this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;TABLE border="1" width="97.69160305033759%"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="50%" height="29px"&gt;Test center&amp;nbsp;&lt;/TD&gt;
&lt;TD width="50%" height="29px"&gt;Capacity&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="50%" height="29px"&gt;Test center Toronto&lt;/TD&gt;
&lt;TD width="50%" height="29px"&gt;460&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="50%" height="29px"&gt;Test center Toronto - close contact&lt;/TD&gt;
&lt;TD width="50%" height="29px"&gt;80&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD height="29px"&gt;Test center Melbourne&lt;/TD&gt;
&lt;TD height="29px"&gt;6566&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD height="29px"&gt;Test center Melbourne - close contact&lt;/TD&gt;
&lt;TD height="29px"&gt;70&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD height="29px"&gt;Test Center Copenhagen&lt;/TD&gt;
&lt;TD height="29px"&gt;666&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD height="29px"&gt;Test Center Vaan&lt;/TD&gt;
&lt;TD height="29px"&gt;70&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD height="29px"&gt;Test Center Thisted&lt;/TD&gt;
&lt;TD height="29px"&gt;152&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD height="29px"&gt;Test Center Thisted - close contact&lt;/TD&gt;
&lt;TD height="29px"&gt;12&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD height="29px"&gt;Test Center A&lt;/TD&gt;
&lt;TD height="29px"&gt;200&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD height="29px"&gt;Test Center A - close contact&lt;/TD&gt;
&lt;TD height="29px"&gt;12&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I want to make two new datasets out of this dataset (I have more observations in the real one)&lt;/P&gt;
&lt;P&gt;The first dataset should contain all test center who has capacity over 400, but the matching "close contact" center should follow with, even though it can have below 400.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The second dataset should only contain test centers below 400 and the matching close contact center should follow with.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How can I do these statements?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Feb 2021 18:35:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/selecting-specific-values-in-a-data-set/m-p/716167#M27415</guid>
      <dc:creator>mmea</dc:creator>
      <dc:date>2021-02-02T18:35:06Z</dc:date>
    </item>
    <item>
      <title>Re: selecting specific values in a data set</title>
      <link>https://communities.sas.com/t5/New-SAS-User/selecting-specific-values-in-a-data-set/m-p/716172#M27416</link>
      <description>&lt;P&gt;You mention that the "Close Contact" values should be in both data sets, is that correct?&lt;/P&gt;</description>
      <pubDate>Tue, 02 Feb 2021 18:46:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/selecting-specific-values-in-a-data-set/m-p/716172#M27416</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2021-02-02T18:46:29Z</dc:date>
    </item>
    <item>
      <title>Re: selecting specific values in a data set</title>
      <link>https://communities.sas.com/t5/New-SAS-User/selecting-specific-values-in-a-data-set/m-p/716175#M27418</link>
      <description>&lt;P&gt;No, if a test place is over 400&lt;/P&gt;
&lt;P&gt;the matching close contact center should be in this dataset despite their capacity value.&lt;/P&gt;
&lt;P&gt;it should NOT not appear in the dataset for under 400.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Feb 2021 18:53:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/selecting-specific-values-in-a-data-set/m-p/716175#M27418</guid>
      <dc:creator>mmea</dc:creator>
      <dc:date>2021-02-02T18:53:46Z</dc:date>
    </item>
    <item>
      <title>Re: selecting specific values in a data set</title>
      <link>https://communities.sas.com/t5/New-SAS-User/selecting-specific-values-in-a-data-set/m-p/716176#M27419</link>
      <description>&lt;P&gt;Ok. Then do this.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
input TestCenter $ 1-39 Capacity;
datalines;
Test center Toronto                    460 
Test center Toronto - close contact    80  
Test center Melbourne                  6566
Test center Melbourne - close contact  70  
Test Center Copenhagen                 666 
Test Center Vaan                       70  
Test Center Thisted                    152 
Test Center Thisted - close contact    12  
Test Center A                          200 
Test Center A - close contact          12  
;

data over under;
    set have;
    if find(TestCenter, 'close contact', 'i') | Capacity &amp;gt;  400 then output over;
    else if Capacity &amp;lt;= 400 then output under;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 02 Feb 2021 18:55:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/selecting-specific-values-in-a-data-set/m-p/716176#M27419</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2021-02-02T18:55:36Z</dc:date>
    </item>
    <item>
      <title>Re: selecting specific values in a data set</title>
      <link>https://communities.sas.com/t5/New-SAS-User/selecting-specific-values-in-a-data-set/m-p/716178#M27420</link>
      <description>&lt;P&gt;Thanks!!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In a case where the data set can look like this, how will I then do the same:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;TABLE border="1" width="100%"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="33.333333333333336%"&gt;Test place&lt;/TD&gt;
&lt;TD width="33.333333333333336%"&gt;Method&lt;/TD&gt;
&lt;TD width="33.333333333333336%"&gt;Capacity&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="33.333333333333336%"&gt;Test place Toronto&lt;/TD&gt;
&lt;TD width="33.333333333333336%"&gt;Normal&lt;/TD&gt;
&lt;TD width="33.333333333333336%"&gt;599&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="33.333333333333336%"&gt;Test place Toronto&lt;/TD&gt;
&lt;TD width="33.333333333333336%"&gt;Close contact&lt;/TD&gt;
&lt;TD width="33.333333333333336%"&gt;23&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="33.333333333333336%"&gt;Test place Copenhagen&lt;/TD&gt;
&lt;TD width="33.333333333333336%"&gt;Normal&lt;/TD&gt;
&lt;TD width="33.333333333333336%"&gt;699&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="33.333333333333336%"&gt;Test place Copenhagen&lt;/TD&gt;
&lt;TD width="33.333333333333336%"&gt;Close contact&lt;/TD&gt;
&lt;TD width="33.333333333333336%"&gt;23&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="33.333333333333336%"&gt;Test Place Thisted&lt;/TD&gt;
&lt;TD width="33.333333333333336%"&gt;Normal&lt;/TD&gt;
&lt;TD width="33.333333333333336%"&gt;159&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="33.333333333333336%"&gt;Test Place Thisted&lt;/TD&gt;
&lt;TD width="33.333333333333336%"&gt;Close contact&lt;/TD&gt;
&lt;TD width="33.333333333333336%"&gt;15&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So a data set for all "normal" over 400 but the matching "close contact" shall follow.&lt;/P&gt;
&lt;P&gt;second data set for all "normal" under 400 and with their matching close contact&lt;/P&gt;</description>
      <pubDate>Tue, 02 Feb 2021 19:09:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/selecting-specific-values-in-a-data-set/m-p/716178#M27420</guid>
      <dc:creator>mmea</dc:creator>
      <dc:date>2021-02-02T19:09:05Z</dc:date>
    </item>
    <item>
      <title>Re: selecting specific values in a data set</title>
      <link>https://communities.sas.com/t5/New-SAS-User/selecting-specific-values-in-a-data-set/m-p/716186#M27421</link>
      <description>&lt;P&gt;Do this&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
input Testplace $ 1-23 Method $ 24-37 Capacity;
datalines;
Test place Toronto     Normal         599 
Test place Toronto     Close contact  23  
Test place Copenhagen  Normal         699 
Test place Copenhagen  Close contact  23  
Test Place Thisted     Normal         159 
Test Place Thisted     Close contact  15  
;

data over under;
    set have;
    if Method = "Close contact" | Capacity &amp;gt;  400 then output over;
    else if Capacity &amp;lt;= 400 then output under;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 02 Feb 2021 19:16:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/selecting-specific-values-in-a-data-set/m-p/716186#M27421</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2021-02-02T19:16:57Z</dc:date>
    </item>
    <item>
      <title>Re: selecting specific values in a data set</title>
      <link>https://communities.sas.com/t5/New-SAS-User/selecting-specific-values-in-a-data-set/m-p/716190#M27422</link>
      <description>&lt;P&gt;This should work:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
infile datalines dlm=",";
length Test_place $100 Method $20;
input Test_place $ method $ capacity;
datalines;
Test place Toronto,Normal,599
Test place Toronto,Close contact,23
Test place Copenhagen,Normal,699
Test place Copenhagen,Close contact,23
Test Place Thisted,Normal,159
Test Place Thisted,Close contact,15
;
run;


proc sql;
create table want1  as
select have.*, flag
from have as t1 left join (select test_place, 1 as flag
							from have
							where method="Normal" and capacity ge 400) as t2 

				on t1.test_place=t2.test_place;
quit;

data over under;
set want1;
if flag=1 then output over;
else output under;
drop flag;
run;

proc sql;
drop table want1;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Feb 2021 19:32:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/selecting-specific-values-in-a-data-set/m-p/716190#M27422</guid>
      <dc:creator>Angel_Larrion</dc:creator>
      <dc:date>2021-02-02T19:32:31Z</dc:date>
    </item>
    <item>
      <title>Re: selecting specific values in a data set</title>
      <link>https://communities.sas.com/t5/New-SAS-User/selecting-specific-values-in-a-data-set/m-p/716192#M27423</link>
      <description>&lt;P&gt;The first proc sql creates a flag that indicates the test places that meet the condition (capacity of normal method=&amp;gt;400).&lt;BR /&gt;&lt;BR /&gt;The data step uses this flag to create the two data sets.&lt;/P&gt;</description>
      <pubDate>Tue, 02 Feb 2021 19:41:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/selecting-specific-values-in-a-data-set/m-p/716192#M27423</guid>
      <dc:creator>Angel_Larrion</dc:creator>
      <dc:date>2021-02-02T19:41:13Z</dc:date>
    </item>
    <item>
      <title>Re: selecting specific values in a data set</title>
      <link>https://communities.sas.com/t5/New-SAS-User/selecting-specific-values-in-a-data-set/m-p/716196#M27424</link>
      <description>&lt;P&gt;Thank you so much for both of your answers they both worked - Thank you!&lt;/P&gt;</description>
      <pubDate>Tue, 02 Feb 2021 19:53:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/selecting-specific-values-in-a-data-set/m-p/716196#M27424</guid>
      <dc:creator>mmea</dc:creator>
      <dc:date>2021-02-02T19:53:06Z</dc:date>
    </item>
    <item>
      <title>Re: selecting specific values in a data set</title>
      <link>https://communities.sas.com/t5/New-SAS-User/selecting-specific-values-in-a-data-set/m-p/717053#M27484</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I did this approach&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data over under;
    set test;
    if method= "close contact" | capacity&amp;gt;  400 then output over;
    else if capacity&amp;lt;= 400 then output under;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;But I still get some close contact places&amp;nbsp; that has a capacity over 400 in the over dataset. But it should be really be in the under dataset, as the normal place for that close contact place has a capacity under 400?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So if i have this kindof data:&lt;/P&gt;
&lt;TABLE border="1" width="56.233822260569454%"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="25%"&gt;Test place&lt;/TD&gt;
&lt;TD width="25%"&gt;Method&lt;/TD&gt;
&lt;TD width="25%"&gt;capacity&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="25%"&gt;test place toronto&lt;/TD&gt;
&lt;TD width="25%"&gt;Normal&lt;/TD&gt;
&lt;TD width="25%"&gt;23&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="25%"&gt;test place toronto&amp;nbsp;&lt;/TD&gt;
&lt;TD width="25%"&gt;close contact&lt;/TD&gt;
&lt;TD width="25%"&gt;455&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;then these to testplaces should be in the UNDER dataset as the normal is under 400.&lt;/P&gt;
&lt;P&gt;how can I correct for that?&lt;/P&gt;</description>
      <pubDate>Fri, 05 Feb 2021 12:22:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/selecting-specific-values-in-a-data-set/m-p/717053#M27484</guid>
      <dc:creator>mmea</dc:creator>
      <dc:date>2021-02-05T12:22:01Z</dc:date>
    </item>
    <item>
      <title>Re: selecting specific values in a data set</title>
      <link>https://communities.sas.com/t5/New-SAS-User/selecting-specific-values-in-a-data-set/m-p/717092#M27486</link>
      <description>&lt;P&gt;Hi&amp;nbsp; again I revised my question if anyone can help me here&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;if I have a data set like this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;TABLE border="1" width="97.69160305033759%"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="50%" height="29px"&gt;Test center&amp;nbsp;&lt;/TD&gt;
&lt;TD width="50%" height="29px"&gt;Capacity&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="50%" height="29px"&gt;Test center Toronto&lt;/TD&gt;
&lt;TD width="50%" height="29px"&gt;460&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="50%" height="29px"&gt;Test center Toronto - close contact&lt;/TD&gt;
&lt;TD width="50%" height="29px"&gt;80&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD height="29px"&gt;Test center Melbourne&lt;/TD&gt;
&lt;TD height="29px"&gt;6566&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD height="29px"&gt;Test center Melbourne - close contact&lt;/TD&gt;
&lt;TD height="29px"&gt;70&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD height="29px"&gt;Test Center Copenhagen&lt;/TD&gt;
&lt;TD height="29px"&gt;666&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD height="29px"&gt;Test Center Vaan&lt;/TD&gt;
&lt;TD height="29px"&gt;70&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD height="29px"&gt;Test Center Thisted&lt;/TD&gt;
&lt;TD height="29px"&gt;152&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD height="29px"&gt;Test Center Thisted - close contact&lt;/TD&gt;
&lt;TD height="29px"&gt;500&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD height="29px"&gt;Test Center A&lt;/TD&gt;
&lt;TD height="29px"&gt;200&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD height="29px"&gt;Test Center A - close contact&lt;/TD&gt;
&lt;TD height="29px"&gt;400&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I want to make two new datasets out of this dataset (I have more observations in the real one)&lt;/P&gt;
&lt;P&gt;The first dataset should contain all test center who has capacity over 400, but the matching "close contact" center should follow with, even though it can have below 400.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;The second dataset should only contain test centers below 400 and the matching close contact center should follow with, even though the close contract can be over 400 (e.g. test center A and test center A close contact)&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How can I do these statements?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 05 Feb 2021 15:06:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/selecting-specific-values-in-a-data-set/m-p/717092#M27486</guid>
      <dc:creator>mmea</dc:creator>
      <dc:date>2021-02-05T15:06:38Z</dc:date>
    </item>
  </channel>
</rss>

