<?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: %str for multiple values Error in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/str-for-multiple-values-Error/m-p/451321#M113747</link>
    <description>Thanks for the help. I am still getting the same error Message as before .&lt;BR /&gt;%let NRML_CODE4 = '1','2','3';&lt;BR /&gt;%let UPCDED_CODE4 = 'A', 'B', 'C';&lt;BR /&gt;%let GRP_CD4 = 'X';&lt;BR /&gt;&lt;BR /&gt;%macro data_pull(NRML_CODE =,UPCDED_CODE =,GRP_CD =);&lt;BR /&gt;&lt;BR /&gt;proc sql;&lt;BR /&gt;create table grp_clms as&lt;BR /&gt;select * from sashelp.cars&lt;BR /&gt;where model in (&amp;amp;NRML_CODE. , &amp;amp;UPCDED_CODE.)&lt;BR /&gt;;&lt;BR /&gt;quit;&lt;BR /&gt;&lt;BR /&gt;%mend;&lt;BR /&gt;&lt;BR /&gt;*%data_pull(nrml_code = &amp;amp;NRML_CODE4. , upcded_code = &amp;amp;UPCDED_CODE4., grp_cd= &amp;amp;GRP_CD4.);&lt;BR /&gt;&lt;BR /&gt;%data_pull(nrml_code = %superq(&amp;amp;NRML_CODE4),upcded_code = %superq(&amp;amp;UPCDED_CODE4), grp_cd= %superq(&amp;amp;GRP_CD4));&lt;BR /&gt;</description>
    <pubDate>Wed, 04 Apr 2018 21:46:50 GMT</pubDate>
    <dc:creator>SASAna</dc:creator>
    <dc:date>2018-04-04T21:46:50Z</dc:date>
    <item>
      <title>%str for multiple values Error</title>
      <link>https://communities.sas.com/t5/SAS-Programming/str-for-multiple-values-Error/m-p/451261#M113733</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hi SAS users,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am getting "ERROR: All positional parameters must precede keyword parameters." while running the below code .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;how to use the multiple values of the macro's when passing in the Macro call?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;%let NRML_CODE4 = '1','2','3';&lt;BR /&gt;%let UPCDED_CODE4 = 'A', 'B', 'C';&lt;BR /&gt;%let GRP_CD4 = 'X';&lt;BR /&gt;&lt;BR /&gt;%macro data_pull(NRML_CODE =,UPCDED_CODE =,GRP_CD =);&lt;BR /&gt;&lt;BR /&gt;proc sql;&lt;BR /&gt;create table grp_clms&amp;nbsp; as&lt;BR /&gt;select * from sashelp.cars&lt;BR /&gt;&amp;nbsp; where (model in %str(&amp;amp;NRML_CODE., &amp;amp;UPCDED_CODE.))&lt;BR /&gt;;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;%mend;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;%data_pull(nrml_code =&amp;nbsp; &amp;amp;NRML_CODE4. ,upcded_code = &amp;amp;UPCDED_CODE4., grp_cd= &amp;amp;GRP_CD4. );&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Apr 2018 19:03:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/str-for-multiple-values-Error/m-p/451261#M113733</guid>
      <dc:creator>SASAna</dc:creator>
      <dc:date>2018-04-04T19:03:32Z</dc:date>
    </item>
    <item>
      <title>Re: %str for multiple values Error</title>
      <link>https://communities.sas.com/t5/SAS-Programming/str-for-multiple-values-Error/m-p/451270#M113734</link>
      <description>&lt;P&gt;My eyesight isn't the best to fix syntax but try the correction attempt of mine:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let NRML_CODE4 = %str('1','2','3');
%let UPCDED_CODE4 = %str('A', 'B', 'C');
%let GRP_CD4 = %str('X');

%macro data_pull(NRML_CODE =,UPCDED_CODE =,GRP_CD =);

proc sql;
create table grp_clms  as
select * from sashelp.cars
  where model in (&amp;amp;NRML_CODE., &amp;amp;UPCDED_CODE.)
;
quit;

%mend;

%data_pull(nrml_code =  &amp;amp;NRML_CODE4. ,upcded_code = &amp;amp;UPCDED_CODE4., grp_cd= &amp;amp;GRP_CD4. )&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Apr 2018 19:10:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/str-for-multiple-values-Error/m-p/451270#M113734</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2018-04-04T19:10:59Z</dc:date>
    </item>
    <item>
      <title>Re: %str for multiple values Error</title>
      <link>https://communities.sas.com/t5/SAS-Programming/str-for-multiple-values-Error/m-p/451273#M113735</link>
      <description>Thanks for the Reply. It works in the %LET statement. But these values are coming from Database. So i was looking for %str in the Macro code or Call. Any suggestions on that?</description>
      <pubDate>Wed, 04 Apr 2018 19:18:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/str-for-multiple-values-Error/m-p/451273#M113735</guid>
      <dc:creator>SASAna</dc:creator>
      <dc:date>2018-04-04T19:18:21Z</dc:date>
    </item>
    <item>
      <title>Re: %str for multiple values Error</title>
      <link>https://communities.sas.com/t5/SAS-Programming/str-for-multiple-values-Error/m-p/451280#M113736</link>
      <description>&lt;P&gt;something like this?&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%macro data_pull(NRML_CODE =,UPCDED_CODE =,GRP_CD =);

proc sql;
create table grp_clms  as
select * from sashelp.cars
  where model in (&amp;amp;NRML_CODE., &amp;amp;UPCDED_CODE.)
;
quit;

%mend;

%data_pull(%superq(nrml_code =  &amp;amp;NRML_CODE4.) ,%superq(upcded_code = &amp;amp;UPCDED_CODE4.), %superq(grp_cd= &amp;amp;GRP_CD4.) )&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 04 Apr 2018 19:25:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/str-for-multiple-values-Error/m-p/451280#M113736</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2018-04-04T19:25:56Z</dc:date>
    </item>
    <item>
      <title>Re: %str for multiple values Error</title>
      <link>https://communities.sas.com/t5/SAS-Programming/str-for-multiple-values-Error/m-p/451287#M113737</link>
      <description>&lt;P&gt;Do it the easy way.&amp;nbsp; Get rid of all the commas.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;%let NRML_CODE4 = '1' '2' '3';&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;%let UPCDED_CODE4 = 'A'&amp;nbsp; 'B'&amp;nbsp; 'C';&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;%let GRP_CD4 = 'X';&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;proc sql;&lt;BR /&gt;create table grp_clms&amp;nbsp; as&lt;BR /&gt;select * from sashelp.cars&lt;BR /&gt;&amp;nbsp; where model in (&amp;amp;NRML_CODE. &amp;amp;UPCDED_CODE.)&lt;BR /&gt;;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;quit;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Apr 2018 19:34:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/str-for-multiple-values-Error/m-p/451287#M113737</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2018-04-04T19:34:37Z</dc:date>
    </item>
    <item>
      <title>Re: %str for multiple values Error</title>
      <link>https://communities.sas.com/t5/SAS-Programming/str-for-multiple-values-Error/m-p/451294#M113738</link>
      <description>Thanks for the reply. But i am getting the below errors.&lt;BR /&gt;&lt;BR /&gt;%data_pull(%superq(nrml_code = &amp;amp;NRML_CODE4.) ,%superq(upcded_code = &amp;amp;UPCDED_CODE4.), %superq(grp_cd= &amp;amp;GRP_CD4.) )&lt;BR /&gt;ERROR: Invalid symbolic variable name NRML_CODE '1','2','3'.&lt;BR /&gt;ERROR: Invalid symbolic variable name UPCDED_CODE 'A', 'B', 'C'.&lt;BR /&gt;ERROR: Invalid symbolic variable name GRP_CD 'X'.&lt;BR /&gt;ERROR: More positional parameters found than defined.</description>
      <pubDate>Wed, 04 Apr 2018 19:48:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/str-for-multiple-values-Error/m-p/451294#M113738</guid>
      <dc:creator>SASAna</dc:creator>
      <dc:date>2018-04-04T19:48:16Z</dc:date>
    </item>
    <item>
      <title>Re: %str for multiple values Error</title>
      <link>https://communities.sas.com/t5/SAS-Programming/str-for-multiple-values-Error/m-p/451297#M113739</link>
      <description>Hi, Thanks for the reply.&lt;BR /&gt;I am getting the below error with the execution -&lt;BR /&gt;ERROR: All positional parameters must precede keyword parameters.</description>
      <pubDate>Wed, 04 Apr 2018 19:51:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/str-for-multiple-values-Error/m-p/451297#M113739</guid>
      <dc:creator>SASAna</dc:creator>
      <dc:date>2018-04-04T19:51:28Z</dc:date>
    </item>
    <item>
      <title>Re: %str for multiple values Error</title>
      <link>https://communities.sas.com/t5/SAS-Programming/str-for-multiple-values-Error/m-p/451304#M113741</link>
      <description>&lt;P&gt;i am so sorry&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%data_pull(nrml_code = %superq( NRML_CODE4) ,upcded_code = %superq(UPCDED_CODE4), grp_cd= %superq(GRP_CD4) )&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;this should. my bad and sincere apologies for the syntax&lt;/P&gt;</description>
      <pubDate>Wed, 04 Apr 2018 20:05:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/str-for-multiple-values-Error/m-p/451304#M113741</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2018-04-04T20:05:03Z</dc:date>
    </item>
    <item>
      <title>Re: %str for multiple values Error</title>
      <link>https://communities.sas.com/t5/SAS-Programming/str-for-multiple-values-Error/m-p/451306#M113742</link>
      <description>&lt;P&gt;You'll have to show what you ran ... similar to your original post.&amp;nbsp; It's easy to debug, but I have to see what you ran (including the statement that calls the macro).&lt;/P&gt;</description>
      <pubDate>Wed, 04 Apr 2018 20:06:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/str-for-multiple-values-Error/m-p/451306#M113742</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2018-04-04T20:06:44Z</dc:date>
    </item>
    <item>
      <title>Re: %str for multiple values Error</title>
      <link>https://communities.sas.com/t5/SAS-Programming/str-for-multiple-values-Error/m-p/451321#M113747</link>
      <description>Thanks for the help. I am still getting the same error Message as before .&lt;BR /&gt;%let NRML_CODE4 = '1','2','3';&lt;BR /&gt;%let UPCDED_CODE4 = 'A', 'B', 'C';&lt;BR /&gt;%let GRP_CD4 = 'X';&lt;BR /&gt;&lt;BR /&gt;%macro data_pull(NRML_CODE =,UPCDED_CODE =,GRP_CD =);&lt;BR /&gt;&lt;BR /&gt;proc sql;&lt;BR /&gt;create table grp_clms as&lt;BR /&gt;select * from sashelp.cars&lt;BR /&gt;where model in (&amp;amp;NRML_CODE. , &amp;amp;UPCDED_CODE.)&lt;BR /&gt;;&lt;BR /&gt;quit;&lt;BR /&gt;&lt;BR /&gt;%mend;&lt;BR /&gt;&lt;BR /&gt;*%data_pull(nrml_code = &amp;amp;NRML_CODE4. , upcded_code = &amp;amp;UPCDED_CODE4., grp_cd= &amp;amp;GRP_CD4.);&lt;BR /&gt;&lt;BR /&gt;%data_pull(nrml_code = %superq(&amp;amp;NRML_CODE4),upcded_code = %superq(&amp;amp;UPCDED_CODE4), grp_cd= %superq(&amp;amp;GRP_CD4));&lt;BR /&gt;</description>
      <pubDate>Wed, 04 Apr 2018 21:46:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/str-for-multiple-values-Error/m-p/451321#M113747</guid>
      <dc:creator>SASAna</dc:creator>
      <dc:date>2018-04-04T21:46:50Z</dc:date>
    </item>
    <item>
      <title>Re: %str for multiple values Error</title>
      <link>https://communities.sas.com/t5/SAS-Programming/str-for-multiple-values-Error/m-p/451322#M113748</link>
      <description>Hi Astounding,&lt;BR /&gt;&lt;BR /&gt;I ran the exact change you have asked me to test on . and getting "ERROR: All positional parameters must precede keyword parameters.&lt;BR /&gt;"&lt;BR /&gt;&lt;BR /&gt;%let NRML_CODE4 = '1','2','3';&lt;BR /&gt;%let UPCDED_CODE4 = 'A', 'B', 'C';&lt;BR /&gt;%let GRP_CD4 = 'X';&lt;BR /&gt;&lt;BR /&gt;%macro data_pull(NRML_CODE =,UPCDED_CODE =,GRP_CD =);&lt;BR /&gt;&lt;BR /&gt;proc sql;&lt;BR /&gt;create table grp_clms as&lt;BR /&gt;select * from sashelp.cars&lt;BR /&gt;where model in (&amp;amp;NRML_CODE. &amp;amp;UPCDED_CODE.)&lt;BR /&gt;;&lt;BR /&gt;quit;&lt;BR /&gt;&lt;BR /&gt;%mend;&lt;BR /&gt;&lt;BR /&gt;%data_pull(nrml_code = &amp;amp;NRML_CODE4. , upcded_code = &amp;amp;UPCDED_CODE4., grp_cd= &amp;amp;GRP_CD4.);&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 04 Apr 2018 21:48:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/str-for-multiple-values-Error/m-p/451322#M113748</guid>
      <dc:creator>SASAna</dc:creator>
      <dc:date>2018-04-04T21:48:55Z</dc:date>
    </item>
    <item>
      <title>Re: %str for multiple values Error</title>
      <link>https://communities.sas.com/t5/SAS-Programming/str-for-multiple-values-Error/m-p/451331#M113753</link>
      <description>&lt;P&gt;Look at my example above, i don't know why you didn;t remove the &amp;amp; before the macro variable in the %superq function.&lt;/P&gt;</description>
      <pubDate>Wed, 04 Apr 2018 22:16:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/str-for-multiple-values-Error/m-p/451331#M113753</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2018-04-04T22:16:43Z</dc:date>
    </item>
    <item>
      <title>Re: %str for multiple values Error</title>
      <link>https://communities.sas.com/t5/SAS-Programming/str-for-multiple-values-Error/m-p/451340#M113756</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/86567"&gt;@SASAna&lt;/a&gt; wrote:&lt;BR /&gt;Hi Astounding,&lt;BR /&gt;&lt;BR /&gt;I ran the exact change you have asked me to test on . and getting "ERROR: All positional parameters must precede keyword parameters.&lt;BR /&gt;"&lt;BR /&gt;&lt;BR /&gt;%let NRML_CODE4 = '1'&lt;FONT size="5"&gt;&lt;STRONG&gt;&lt;FONT color="#ff0000"&gt;,&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/FONT&gt;'2'&lt;STRONG&gt;&lt;FONT color="#ff0000" size="5"&gt;,&lt;/FONT&gt;&lt;/STRONG&gt;'3';&lt;BR /&gt;%let UPCDED_CODE4 = 'A'&lt;STRONG&gt;&lt;FONT color="#ff0000" size="5"&gt;,&lt;/FONT&gt;&lt;/STRONG&gt; 'B'&lt;STRONG&gt;&lt;FONT color="#ff0000" size="5"&gt;,&lt;/FONT&gt;&lt;/STRONG&gt; 'C';&lt;BR /&gt;%let GRP_CD4 = 'X';&lt;BR /&gt;&lt;BR /&gt;%macro data_pull(NRML_CODE =,UPCDED_CODE =,GRP_CD =);&lt;BR /&gt;&lt;BR /&gt;proc sql;&lt;BR /&gt;create table grp_clms as&lt;BR /&gt;select * from sashelp.cars&lt;BR /&gt;where model in (&amp;amp;NRML_CODE. &amp;amp;UPCDED_CODE.)&lt;BR /&gt;;&lt;BR /&gt;quit;&lt;BR /&gt;&lt;BR /&gt;%mend;&lt;BR /&gt;&lt;BR /&gt;%data_pull(nrml_code = &amp;amp;NRML_CODE4. , upcded_code = &amp;amp;UPCDED_CODE4., grp_cd= &amp;amp;GRP_CD4.);&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;See the commas highlighted. I believe the suggestion was to remove the commas...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When you submit this statement:&lt;/P&gt;
&lt;P&gt;%data_pull(nrml_code = &amp;amp;NRML_CODE4. , upcded_code = &amp;amp;UPCDED_CODE4., grp_cd= &amp;amp;GRP_CD4.);&lt;/P&gt;
&lt;P&gt;The macro variables resolve to in actual call:&lt;/P&gt;
&lt;P&gt;%data_pull(nrml_code = '1'&lt;FONT size="5"&gt;&lt;STRONG&gt;&lt;FONT color="#ff0000"&gt;,&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/FONT&gt;'2'&lt;STRONG&gt;&lt;FONT color="#ff0000" size="5"&gt;,&lt;/FONT&gt;&lt;/STRONG&gt;'3' , upcded_code = 'A'&lt;STRONG&gt;&lt;FONT color="#ff0000" size="5"&gt;,&lt;/FONT&gt;&lt;/STRONG&gt; 'B'&lt;STRONG&gt;&lt;FONT color="#ff0000" size="5"&gt;,&lt;/FONT&gt;&lt;/STRONG&gt; 'C', grp_cd= 'X');&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Notice that the first comma between '1' and '2' is treated a delimiter between the macro parameters just as in the definition the comma between nrml_code= and upcded_code is a delimiter. So when the value '2' is encountered is treated as a positional parameter since there is nothing like var= between the comma and the value '2'.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So either ensure that the value passed to the macro call does not contain commas OR use a call like&lt;/P&gt;
&lt;PRE&gt;%data_pull(nrml_code = %str(&amp;amp;NRML_CODE4.) , upcded_code = %str(&amp;amp;UPCDED_CODE4.), grp_cd= &amp;amp;GRP_CD4.);
&lt;/PRE&gt;
&lt;P&gt;The %str or %nrstr are one way to prevent the compiler from seeing the commas "too soon". Different macro quoting functions may be needed depending on the actual types of characters that get sent. Note that the macro language characters &amp;amp; and % would need %nrstr instead %str. Anything that might contain a single quote, either ' or " as part of the value may also cause serious issues.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Consider what might happen if you have open code like:&lt;/P&gt;
&lt;PRE&gt;where model in ('1' '2' '3' 'this's' 'had imbedded quote')&lt;/PRE&gt;
&lt;P&gt;when one of the data base values had the value of "this's". Other problem values from your database could involve ( ) as unmatched pairs.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You have to determine all of the possible cases of special characters based on you data content. Note that variables that contain units of measure have caused similar headaches for me when the values were like 10' 3". Company names like Johnson &amp;amp; Sons may also cause headaches.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The IN operator has not required commas for several releases so if the extract from the data base can be done without them you'll be ahead of the game.&lt;/P&gt;</description>
      <pubDate>Wed, 04 Apr 2018 22:43:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/str-for-multiple-values-Error/m-p/451340#M113756</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-04-04T22:43:44Z</dc:date>
    </item>
    <item>
      <title>Re: %str for multiple values Error</title>
      <link>https://communities.sas.com/t5/SAS-Programming/str-for-multiple-values-Error/m-p/451386#M113782</link>
      <description>&lt;P&gt;The exact code that I showed does not contain commas.&amp;nbsp; You still have commas instead of blanks in your %LET statements.&amp;nbsp; Change them to blanks.&lt;/P&gt;</description>
      <pubDate>Thu, 05 Apr 2018 03:28:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/str-for-multiple-values-Error/m-p/451386#M113782</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2018-04-05T03:28:34Z</dc:date>
    </item>
  </channel>
</rss>

