<?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: Using in operator with 'continuous' character variable in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Using-in-operator-with-continuous-character-variable/m-p/584756#M166608</link>
    <description>&lt;P&gt;Interesting question. How about a work around with a colon modifier ( : )&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data test;
input school $ avg_sat;
datalines;
a1 1513
a2 1320
a3 1476
a4 1280
a5 1520
b1 1378
b2 1410
;
run;

data want;
set test;
where school in :('a');
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 28 Aug 2019 20:08:54 GMT</pubDate>
    <dc:creator>novinosrin</dc:creator>
    <dc:date>2019-08-28T20:08:54Z</dc:date>
    <item>
      <title>Using in operator with 'continuous' character variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Using-in-operator-with-continuous-character-variable/m-p/584755#M166607</link>
      <description>&lt;P&gt;Hello experts,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Suppose I have a table with the names of a few high schools and the average SAT scores of the students from each of these schools:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data test;
input school $ avg_sat;
datalines;
a1 1513
a2 1320
a3 1476
a4 1280
a5 1520
b1 1378
b2 1410
;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Now, suppose I want to subset to only include only a1 - a5, I would write something like:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want;
set test;
where school in ('a1', 'a2', 'a3', 'a4', 'a5');
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;This is totally OK in this scenario since I only have 5 elements within the in operator (a1, a2, a3, a4, a5). Nonetheless, this can quickly become impractical if I am doing this for a1 - a100 instead, for example, for which I will have to type 100 elements within the in operator.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I know that if the variable &lt;EM&gt;school&lt;/EM&gt; is a numeric variable instead, I can use something like:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;where school in (1:5);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;but since it is a character variable in this case, I cannot use the ':' sign to indicate a range. I know I can still use a substr() function to separate the numbers from the &lt;EM&gt;school&lt;/EM&gt; variable and go from there, but i am just wondering if there's a shortcut that allows something like:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;where school in ('a1' : 'a5');&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Thanks,&lt;/P&gt;</description>
      <pubDate>Wed, 28 Aug 2019 20:02:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Using-in-operator-with-continuous-character-variable/m-p/584755#M166607</guid>
      <dc:creator>aaronh</dc:creator>
      <dc:date>2019-08-28T20:02:04Z</dc:date>
    </item>
    <item>
      <title>Re: Using in operator with 'continuous' character variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Using-in-operator-with-continuous-character-variable/m-p/584756#M166608</link>
      <description>&lt;P&gt;Interesting question. How about a work around with a colon modifier ( : )&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data test;
input school $ avg_sat;
datalines;
a1 1513
a2 1320
a3 1476
a4 1280
a5 1520
b1 1378
b2 1410
;
run;

data want;
set test;
where school in :('a');
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Aug 2019 20:08:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Using-in-operator-with-continuous-character-variable/m-p/584756#M166608</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2019-08-28T20:08:54Z</dc:date>
    </item>
    <item>
      <title>Re: Using in operator with 'continuous' character variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Using-in-operator-with-continuous-character-variable/m-p/584760#M166609</link>
      <description>&lt;P&gt;or Something fancy&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let n=5;
data want;
set test;
array a(&amp;amp;n)$ ;
retain a;
if _n_=1 then do _n_=1 to dim(a);
 a(_n_)=vname(a(_n_));
 end;
if school in a;
drop a:;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 28 Aug 2019 20:16:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Using-in-operator-with-continuous-character-variable/m-p/584760#M166609</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2019-08-28T20:16:32Z</dc:date>
    </item>
    <item>
      <title>Re: Using in operator with 'continuous' character variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Using-in-operator-with-continuous-character-variable/m-p/584761#M166610</link>
      <description>Thanks novinosrin! While this works in this case, it wouldn't have worked if I have a1-a100 in the data, and only want to include a1-a80 in the subset, for example.</description>
      <pubDate>Wed, 28 Aug 2019 20:17:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Using-in-operator-with-continuous-character-variable/m-p/584761#M166610</guid>
      <dc:creator>aaronh</dc:creator>
      <dc:date>2019-08-28T20:17:10Z</dc:date>
    </item>
    <item>
      <title>Re: Using in operator with 'continuous' character variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Using-in-operator-with-continuous-character-variable/m-p/584763#M166612</link>
      <description>&lt;P&gt;Can you change N to 80 ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE class=" language-sas"&gt;&lt;CODE class="  language-sas"&gt;&lt;SPAN class="token macroname"&gt;%let&lt;/SPAN&gt; &lt;SPAN class="token function"&gt;n&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;=80&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;and execute the previous array method?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Aug 2019 20:18:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Using-in-operator-with-continuous-character-variable/m-p/584763#M166612</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2019-08-28T20:18:39Z</dc:date>
    </item>
    <item>
      <title>Re: Using in operator with 'continuous' character variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Using-in-operator-with-continuous-character-variable/m-p/584766#M166613</link>
      <description>&lt;P&gt;How about&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want;
	set test;
	where input(compress(school,,'kd'),3.)  le 80;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 28 Aug 2019 20:26:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Using-in-operator-with-continuous-character-variable/m-p/584766#M166613</guid>
      <dc:creator>r_behata</dc:creator>
      <dc:date>2019-08-28T20:26:19Z</dc:date>
    </item>
    <item>
      <title>Re: Using in operator with 'continuous' character variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Using-in-operator-with-continuous-character-variable/m-p/584775#M166618</link>
      <description>&lt;P&gt;If you know all of the names involved then create a numeric code and use that if you really need the list type of description.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If your "list" is supposed to represent a group, such as members of a school district, then you may be better off with an additional variable.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You may also be implying that you want only the A, only the B etc.&lt;/P&gt;
&lt;P&gt;That could be&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;where school=: 'a';&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have tended to create separate grouping variables and then done things with By group processing on the group and/or the group and school , region, county, school district, school type actually. With a whole lot more things to summarize than a single value like SAT.&lt;/P&gt;</description>
      <pubDate>Wed, 28 Aug 2019 20:36:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Using-in-operator-with-continuous-character-variable/m-p/584775#M166618</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-08-28T20:36:50Z</dc:date>
    </item>
    <item>
      <title>Re: Using in operator with 'continuous' character variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Using-in-operator-with-continuous-character-variable/m-p/584805#M166644</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/274317"&gt;@aaronh&lt;/a&gt;:&lt;/P&gt;
&lt;P&gt;If you have a pattern with regard to the values you want to include in your search - for example, if they all start with a specific prefix or form a prefixed numbered list - you already have your answers.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However, I can't help but point out that even if you have a pattern, let alone if the value list is arbitrary, using the IN operator in this manner still amounts to hard coding. Such practice is okay for a one-time ad hoc program, but it's surely not a good thing if you (and especially someone else) should revisit the program in the future, if it's part of production, and/or is under change control.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;A much saner and more scalable way of program organization is to store the search-for values in an editable control file outside the change control encumbrance. It's specific format is of secondary importance, as long as your program can read it properly to input the values into the SAS system (though since it's SAS, storing a search list in a SAS data set rather than, say, in a flat file seems more than reasonable). This way, if you need to augment or update the list of search values, you only have to edit the control file and never touch the program itself.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Once you've got the values on the file, there're a myriad of ways to let SAS tell what they are in order to search for them in the WHERE clause, such as:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Create an in/format.&lt;/LI&gt;
&lt;LI&gt;Load a hash table via FCMP.&lt;/LI&gt;
&lt;LI&gt;Auto-compose a list for the IN operator, replete with the quotes around each value if needed.&lt;/LI&gt;
&lt;LI&gt;Etc.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;For example, in your case, it could look like:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data values ;                                                             
  input value $3. ;                                                       
  cards ;                                                                 
a1                                                                        
a2                                                                        
a3                                                                        
a4                                                                        
a5                                                                        
run ;                                                                     
                                                                          
proc sql noprint ;                                                        
  select quote (strip (value)) into :inlist separated by " " from values ;
quit ;                                                                    
                                                                          
data want ;                                                               
  set test ;                                                              
  where school in (&amp;amp;inlist) ;                                             
run ;                                                                     &lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;You'd store the file VALUES on the side (outside change control) and simply edit it as you wish if you needed to add, delete, or change any search-for values in the future. And if it's a list shared across a team, department, etc., other programmers would be able to simply read it instead of copying a hard coded list into their programs from yours.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Kind regards&lt;/P&gt;
&lt;P&gt;Paul D.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Aug 2019 22:23:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Using-in-operator-with-continuous-character-variable/m-p/584805#M166644</guid>
      <dc:creator>hashman</dc:creator>
      <dc:date>2019-08-28T22:23:28Z</dc:date>
    </item>
    <item>
      <title>Re: Using in operator with 'continuous' character variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Using-in-operator-with-continuous-character-variable/m-p/584832#M166662</link>
      <description>&lt;P&gt;A good plan for next time:&amp;nbsp; use different data values:&amp;nbsp; a001, a002, a003, etc.&amp;nbsp; Then subsetting becomes much easier:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;where ('a001' &amp;lt;= school &amp;lt;= 'a080');&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 29 Aug 2019 02:50:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Using-in-operator-with-continuous-character-variable/m-p/584832#M166662</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2019-08-29T02:50:59Z</dc:date>
    </item>
    <item>
      <title>Re: Using in operator with 'continuous' character variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Using-in-operator-with-continuous-character-variable/m-p/584954#M166728</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/4954"&gt;@Astounding&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;A good plan for next time:&amp;nbsp; use different data values:&amp;nbsp; a001, a002, a003, etc.&amp;nbsp; Then subsetting becomes much easier:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;where ('a001' &amp;lt;= school &amp;lt;= 'a080');&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;If the OP school data is anything like the school data I have worked with the "next time" first step is identifying which school identifiers changed and provide a mapping from last year to this year, or similar. But perhaps he doesn't have an Education department that intermixes any or 3 different "identification" schemes.&lt;/P&gt;</description>
      <pubDate>Thu, 29 Aug 2019 15:00:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Using-in-operator-with-continuous-character-variable/m-p/584954#M166728</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-08-29T15:00:48Z</dc:date>
    </item>
    <item>
      <title>Re: Using in operator with 'continuous' character variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Using-in-operator-with-continuous-character-variable/m-p/585054#M166769</link>
      <description>Thanks a lot!&lt;BR /&gt;where('a1' &amp;lt;= school &amp;lt;= 'a5') also worked just fine.</description>
      <pubDate>Thu, 29 Aug 2019 19:25:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Using-in-operator-with-continuous-character-variable/m-p/585054#M166769</guid>
      <dc:creator>aaronh</dc:creator>
      <dc:date>2019-08-29T19:25:01Z</dc:date>
    </item>
    <item>
      <title>Re: Using in operator with 'continuous' character variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Using-in-operator-with-continuous-character-variable/m-p/585057#M166771</link>
      <description>&lt;P&gt;I want to thank everyone for your input.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Apparently my question was very open-ended, as many of you have provided some solution that'd solve my question. I personally like the 'control file' idea the best, as it seems to be more flexible and generalizable, in addition to being helpful in project management.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again!&lt;/P&gt;</description>
      <pubDate>Thu, 29 Aug 2019 19:27:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Using-in-operator-with-continuous-character-variable/m-p/585057#M166771</guid>
      <dc:creator>aaronh</dc:creator>
      <dc:date>2019-08-29T19:27:59Z</dc:date>
    </item>
    <item>
      <title>Re: Using in operator with 'continuous' character variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Using-in-operator-with-continuous-character-variable/m-p/585081#M166785</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/274317"&gt;@aaronh&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;Thanks a lot!&lt;BR /&gt;where('a1' &amp;lt;= school &amp;lt;= 'a5') also worked just fine.&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Danger Will Robinson:&amp;nbsp; If you have school named 'a10' or 'a20' or 'a3456' these will be included in the range.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;data example;
   input school $;
   if ('a1' le school le 'a5') then put School= 'is in the range specified';
datalines;
a1
a2
a3
a4
a5
a6
a10
a300
;
&lt;/PRE&gt;
&lt;P&gt;Read the log.&lt;/P&gt;
&lt;P&gt;Character values are compared character by character with the range values. As soon as one character in the same position is out of range it&amp;nbsp;is not inside the range. So since some of these examples are longer than the range values the comparison stops at two characters.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Perhaps your actual data does not go to 'a10'. But be very wary of any character comparison involving &amp;gt; or &amp;lt; whether in combination of an equal or not.&lt;/P&gt;</description>
      <pubDate>Thu, 05 Sep 2019 15:19:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Using-in-operator-with-continuous-character-variable/m-p/585081#M166785</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-09-05T15:19:58Z</dc:date>
    </item>
    <item>
      <title>Re: Using in operator with 'continuous' character variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Using-in-operator-with-continuous-character-variable/m-p/585653#M167064</link>
      <description>&lt;P&gt;Guru&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/21262"&gt;@hashman&lt;/a&gt;&amp;nbsp; &amp;nbsp;Not that this is important. I just recalled what you said in &lt;SPAN&gt;Proc SQL: No LOG Note for Missing values? thread&lt;EM&gt;&amp;nbsp;&lt;/EM&gt;&lt;/SPAN&gt;&lt;EM&gt;"I'd rather say it's a system of tools, &lt;U&gt;&lt;STRONG&gt;each with its own language&lt;/STRONG&gt;&lt;/U&gt; sharing certain main syntactic features with the others.&amp;nbsp;"&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Pretty impeccable statement.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;While it irks me as it confuses me trying to&amp;nbsp; familiarizing certain functionalities, it's great to note the above being so real as we can see that in&amp;nbsp; proc iml, the char continuous sequence works &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;PRE&gt;&lt;CODE class=" language-sas"&gt;proc iml;
want='a1':'a10';
print want;
quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;PRE&gt;want 
a1 a2 a3 a4 a5 a6 a7 a8 a9 a10 
&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Sep 2019 18:42:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Using-in-operator-with-continuous-character-variable/m-p/585653#M167064</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2019-09-02T18:42:38Z</dc:date>
    </item>
    <item>
      <title>Re: Using in operator with 'continuous' character variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Using-in-operator-with-continuous-character-variable/m-p/585656#M167067</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/138205"&gt;@novinosrin&lt;/a&gt;:&lt;/P&gt;
&lt;P&gt;Thanks for the demo - good to know!&lt;/P&gt;
&lt;P&gt;Kind regards&lt;/P&gt;
&lt;P&gt;Paul D.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Sep 2019 19:40:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Using-in-operator-with-continuous-character-variable/m-p/585656#M167067</guid>
      <dc:creator>hashman</dc:creator>
      <dc:date>2019-09-02T19:40:57Z</dc:date>
    </item>
  </channel>
</rss>

