<?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: Proc sql within macro - where clause take values from macro variable containing list of values in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Proc-sql-within-macro-where-clause-take-values-from-macro/m-p/754770#M238093</link>
    <description>&lt;P&gt;I said in my very first reply to use&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%prog1(var1=%str('Austria','France','Romania','Germany'));&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Please show us code where you have done that, and the associated log.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You CALL EXECUTE has syntax errors, and it also is not likely to work the way you want it to.&lt;/P&gt;</description>
    <pubDate>Sat, 17 Jul 2021 16:16:21 GMT</pubDate>
    <dc:creator>PaigeMiller</dc:creator>
    <dc:date>2021-07-17T16:16:21Z</dc:date>
    <item>
      <title>Proc sql within macro - where clause take values from macro variable containing list of values</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-sql-within-macro-where-clause-take-values-from-macro/m-p/754751#M238084</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;i have a macro as the one below:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;%macro prog1(var=1);&lt;/P&gt;
&lt;P&gt;proc sql;&lt;/P&gt;
&lt;P&gt;select sum(amount) from table1 where country in (&amp;amp;var1.);&lt;/P&gt;
&lt;P&gt;quit;&lt;/P&gt;
&lt;P&gt;%mend&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;when i am running i am trying to pass a list of values separated by comma with var1. e.g. var1='Austria','Romania','France','Germany'&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;i get an error "all positional parameters must precede keyword parameters"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;i tried using in &amp;nbsp;above also&lt;/P&gt;
&lt;P&gt;in ( %quote(&amp;amp;var1))&amp;nbsp;&lt;/P&gt;
&lt;P&gt;but i get the same error.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;any way to get around this?&lt;/P&gt;
&lt;P&gt;thank you very much&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;example:&lt;/P&gt;
&lt;P&gt;DATA countries;&lt;BR /&gt;INPUT country $ population;&lt;BR /&gt;CARDS;&lt;BR /&gt;France 75&lt;BR /&gt;Germany 85&lt;BR /&gt;Romania 22&lt;BR /&gt;Austria 10&lt;BR /&gt;Italy 60&lt;BR /&gt;;&lt;BR /&gt;RUN;&lt;/P&gt;
&lt;P&gt;%macro prog1(var1=);&lt;BR /&gt;proc sql;&lt;BR /&gt;select sum(population) from countries where country in (&amp;amp;var1.);&lt;BR /&gt;quit;&lt;BR /&gt;%mend;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;%prog1(var1='France');&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;this works fine and results 75. however i want to run it with different clauses. i have a xls table which i import where i have all the query combinations which i must execut; i import it but then i get the error when running the macro on the table:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data NULL;&lt;BR /&gt;set table_to_run;&lt;BR /&gt;call execute(catt('%prog1(var1=',var1,');'));&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;this is table_to_run&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="VCucu_0-1626534784389.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/61321i77AB50FACB6AA8FA/image-size/medium?v=v2&amp;amp;px=400" role="button" title="VCucu_0-1626534784389.png" alt="VCucu_0-1626534784389.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 17 Jul 2021 15:16:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-sql-within-macro-where-clause-take-values-from-macro/m-p/754751#M238084</guid>
      <dc:creator>VCucu</dc:creator>
      <dc:date>2021-07-17T15:16:19Z</dc:date>
    </item>
    <item>
      <title>Re: Proc sql within macro - where clause take values from macro variable containing list of values</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-sql-within-macro-where-clause-take-values-from-macro/m-p/754760#M238086</link>
      <description>&lt;BLOCKQUOTE&gt;
&lt;P&gt;when i am running i am trying to pass a list of values separated by comma with var1. e.g. var1='Austria','Romania','France','Germany'&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;but you don't show us that code, and you don't show us the LOG from that code, either of which would be very helpful.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Nevertheless, I think what you want is:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%prog1(var1=%str('Austria','France','Romania','Germany'));&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;If that's not what you want, then please explain further and show us the code or log.&lt;/P&gt;</description>
      <pubDate>Sat, 17 Jul 2021 15:42:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-sql-within-macro-where-clause-take-values-from-macro/m-p/754760#M238086</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2021-07-17T15:42:52Z</dc:date>
    </item>
    <item>
      <title>Re: Proc sql within macro - where clause take values from macro variable containing list of values</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-sql-within-macro-where-clause-take-values-from-macro/m-p/754762#M238087</link>
      <description>&lt;P&gt;%str did not help, same error&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;program:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;DATA countries;
 INPUT country $ population;
CARDS;
France 75
Germany 85
Romania  22
Austria 10
Italy 60
;
RUN;

%macro prog1(var1=);
proc sql;
select sum(population) from countries where country in (&amp;amp;var1.);
quit;
%mend;

data NULL;
set sasuser.ir_input_sheet12;
call execute(catt('%prog1(var1=',var1,');'));
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;table sasuser.ir_input_sheet12 looks like this&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="VCucu_0-1626537043696.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/61322iDA8A55EFF158C09F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="VCucu_0-1626537043696.png" alt="VCucu_0-1626537043696.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;log is the following:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;1                                                          Das SAS System                              13:16 Saturday, July 17, 2021

1          ;*';*";*/;quit;run;
2          OPTIONS PAGENO=MIN;
3          %LET _CLIENTTASKLABEL='Programm';
4          %LET _CLIENTPROCESSFLOWNAME='Standalone Not In Project';
5          %LET _CLIENTPROJECTPATH='';
6          %LET _CLIENTPROJECTPATHHOST='';
7          %LET _CLIENTPROJECTNAME='';
8          %LET _SASPROGRAMFILE='';
9          %LET _SASPROGRAMFILEHOST='';
10         
11         ODS _ALL_ CLOSE;
12         OPTIONS DEV=SVG;
13         GOPTIONS XPIXELS=0 YPIXELS=0;
14         %macro HTML5AccessibleGraphSupported;
15             %if %_SAS_VERCOMP_FV(9,4,4, 0,0,0) &amp;gt;= 0 %then ACCESSIBLE_GRAPH;
16         %mend;
17         FILENAME EGHTML TEMP;
18         ODS HTML5(ID=EGHTML) FILE=EGHTML
19             OPTIONS(BITMAP_MODE='INLINE')
20             %HTML5AccessibleGraphSupported
21             ENCODING='utf-8'
22             STYLE=HtmlBlue
23             NOGTITLE
24             NOGFOOTNOTE
25             GPATH=&amp;amp;sasworklocation
26         ;
NOTE: Writing HTML5(EGHTML) Body file: EGHTML
27         


28         DATA countries;
29          INPUT country $ population;
30         CARDS;

NOTE: The data set WORK.COUNTRIES has 5 observations and 2 variables.
NOTE: DATA statement used (Total process time):
      real time           0.07 seconds
      cpu time            0.03 seconds
      

36         ;
37         RUN;
38         
39         %macro prog1(var1=);
40         proc sql;
41         select sum(population) from countries where country in (&amp;amp;var1.);
42         quit;
43         %mend;
44         
45         data NULL;
46         set sasuser.ir_input_sheet12;
47         call execute(catt('%prog1(var1=',var1,');'));
48         run;

ERROR: All positional parameters must precede keyword parameters.
ERROR: All positional parameters must precede keyword parameters.
ERROR: All positional parameters must precede keyword parameters.
NOTE: The SAS System stopped processing this step because of errors.
2                                                          Das SAS System                              13:16 Saturday, July 17, 2021

NOTE: There were 3 observations read from the data set SASUSER.IR_INPUT_SHEET12.
WARNING: The data set WORK.NULL may be incomplete.  When this step was stopped there were 3 observations and 6 variables.
WARNING: Datei WORK.NULL wurde nicht ersetzt, da da dieser Schritt angehalten wurde.
NOTE: DATA statement used (Total process time):
      real time           0.03 seconds
      cpu time            0.01 seconds
      

NOTE: CALL EXECUTE generated line.
1         +;
2         +;
3         +;
49         
50         %LET _CLIENTTASKLABEL=;
51         %LET _CLIENTPROCESSFLOWNAME=;
52         %LET _CLIENTPROJECTPATH=;
53         %LET _CLIENTPROJECTPATHHOST=;
54         %LET _CLIENTPROJECTNAME=;
55         %LET _SASPROGRAMFILE=;
56         %LET _SASPROGRAMFILEHOST=;
57         
58         ;*';*";*/;quit;run;
59         ODS _ALL_ CLOSE;
60         
61         
62         QUIT; RUN;
63         
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 17 Jul 2021 15:51:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-sql-within-macro-where-clause-take-values-from-macro/m-p/754762#M238087</guid>
      <dc:creator>VCucu</dc:creator>
      <dc:date>2021-07-17T15:51:28Z</dc:date>
    </item>
    <item>
      <title>Re: Proc sql within macro - where clause take values from macro variable containing list of values</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-sql-within-macro-where-clause-take-values-from-macro/m-p/754766#M238090</link>
      <description>&lt;P&gt;In this most recent batch of code, I do not see the %STR function being used.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In addition, you have now gone to CALL EXECUTE instead of just calling the macro, so please stick with one method and ask questions about one method, do not switch back and forth.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 17 Jul 2021 16:06:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-sql-within-macro-where-clause-take-values-from-macro/m-p/754766#M238090</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2021-07-17T16:06:43Z</dc:date>
    </item>
    <item>
      <title>Re: Proc sql within macro - where clause take values from macro variable containing list of values</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-sql-within-macro-where-clause-take-values-from-macro/m-p/754769#M238092</link>
      <description>&lt;P&gt;code with str; i normally use call execute&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;DATA countries;
 INPUT country $ population;
CARDS;
France 75
Germany 85
Romania  22
Austria 10
Italy 60
;
RUN;

%macro prog1(var1=);
proc sql;
select sum(population) from countries where country in (&amp;amp;var1.);
quit;
%mend;

data NULL;
set sasuser.ir_input_sheet12;
call execute(catt('%prog1(var1=',%str(var1),');'));
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;log&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;1                                                          Das SAS System                              13:16 Saturday, July 17, 2021

1          ;*';*";*/;quit;run;
2          OPTIONS PAGENO=MIN;
3          %LET _CLIENTTASKLABEL='Programm';
4          %LET _CLIENTPROCESSFLOWNAME='Standalone Not In Project';
5          %LET _CLIENTPROJECTPATH='';
6          %LET _CLIENTPROJECTPATHHOST='';
7          %LET _CLIENTPROJECTNAME='';
8          %LET _SASPROGRAMFILE='';
9          %LET _SASPROGRAMFILEHOST='';
10         
11         ODS _ALL_ CLOSE;
12         OPTIONS DEV=SVG;
13         GOPTIONS XPIXELS=0 YPIXELS=0;
14         %macro HTML5AccessibleGraphSupported;
15             %if %_SAS_VERCOMP_FV(9,4,4, 0,0,0) &amp;gt;= 0 %then ACCESSIBLE_GRAPH;
16         %mend;
17         FILENAME EGHTML TEMP;
18         ODS HTML5(ID=EGHTML) FILE=EGHTML
19             OPTIONS(BITMAP_MODE='INLINE')
20             %HTML5AccessibleGraphSupported
21             ENCODING='utf-8'
22             STYLE=HtmlBlue
23             NOGTITLE
24             NOGFOOTNOTE
25             GPATH=&amp;amp;sasworklocation
26         ;
NOTE: Writing HTML5(EGHTML) Body file: EGHTML
27         
28         
29         DATA countries;
30          INPUT country $ population;
31         CARDS;

NOTE: The data set WORK.COUNTRIES has 5 observations and 2 variables.
NOTE: DATA statement used (Total process time):
      real time           0.03 seconds
      cpu time            0.03 seconds
      

37         ;
38         RUN;
39         
40         %macro prog1(var1=);
41         proc sql;
42         select sum(population) from countries where country in (&amp;amp;var1.);
43         quit;
44         %mend;
45         
46         data NULL;
47         set sasuser.ir_input_sheet12;
48         call execute(catt('%prog1(var1=',%str(var1),');'));
49         run;

ERROR: All positional parameters must precede keyword parameters.
ERROR: All positional parameters must precede keyword parameters.
ERROR: All positional parameters must precede keyword parameters.
NOTE: The SAS System stopped processing this step because of errors.
NOTE: There were 3 observations read from the data set SASUSER.IR_INPUT_SHEET12.
2                                                          Das SAS System                              13:16 Saturday, July 17, 2021

WARNING: The data set WORK.NULL may be incomplete.  When this step was stopped there were 3 observations and 6 variables.
WARNING: Datei WORK.NULL wurde nicht ersetzt, da da dieser Schritt angehalten wurde.
NOTE: DATA statement used (Total process time):
      real time           0.03 seconds
      cpu time            0.03 seconds
      

NOTE: CALL EXECUTE generated line.
1         +;
2         +;
3         +;
50         
51         %LET _CLIENTTASKLABEL=;
52         %LET _CLIENTPROCESSFLOWNAME=;
53         %LET _CLIENTPROJECTPATH=;
54         %LET _CLIENTPROJECTPATHHOST=;
55         %LET _CLIENTPROJECTNAME=;
56         %LET _SASPROGRAMFILE=;
57         %LET _SASPROGRAMFILEHOST=;
58         
59         ;*';*";*/;quit;run;
60         ODS _ALL_ CLOSE;
61         
62         
63         QUIT; RUN;
64         
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 17 Jul 2021 16:09:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-sql-within-macro-where-clause-take-values-from-macro/m-p/754769#M238092</guid>
      <dc:creator>VCucu</dc:creator>
      <dc:date>2021-07-17T16:09:48Z</dc:date>
    </item>
    <item>
      <title>Re: Proc sql within macro - where clause take values from macro variable containing list of values</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-sql-within-macro-where-clause-take-values-from-macro/m-p/754770#M238093</link>
      <description>&lt;P&gt;I said in my very first reply to use&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%prog1(var1=%str('Austria','France','Romania','Germany'));&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Please show us code where you have done that, and the associated log.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You CALL EXECUTE has syntax errors, and it also is not likely to work the way you want it to.&lt;/P&gt;</description>
      <pubDate>Sat, 17 Jul 2021 16:16:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-sql-within-macro-where-clause-take-values-from-macro/m-p/754770#M238093</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2021-07-17T16:16:21Z</dc:date>
    </item>
    <item>
      <title>Re: Proc sql within macro - where clause take values from macro variable containing list of values</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-sql-within-macro-where-clause-take-values-from-macro/m-p/754771#M238094</link>
      <description>sorry, this is irrelevant in my example. i need to run it like a batch based on a values from table&lt;BR /&gt;</description>
      <pubDate>Sat, 17 Jul 2021 16:25:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-sql-within-macro-where-clause-take-values-from-macro/m-p/754771#M238094</guid>
      <dc:creator>VCucu</dc:creator>
      <dc:date>2021-07-17T16:25:58Z</dc:date>
    </item>
    <item>
      <title>Re: Proc sql within macro - where clause take values from macro variable containing list of values</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-sql-within-macro-where-clause-take-values-from-macro/m-p/754774#M238096</link>
      <description>ans there are syntax errors. i do not get any syntax error. i do not know about your proposal with str... how to implement that when running a batch</description>
      <pubDate>Sat, 17 Jul 2021 16:28:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-sql-within-macro-where-clause-take-values-from-macro/m-p/754774#M238096</guid>
      <dc:creator>VCucu</dc:creator>
      <dc:date>2021-07-17T16:28:16Z</dc:date>
    </item>
    <item>
      <title>Re: Proc sql within macro - where clause take values from macro variable containing list of values</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-sql-within-macro-where-clause-take-values-from-macro/m-p/754775#M238097</link>
      <description>&lt;P&gt;You started with &lt;FONT face="courier new,courier"&gt;%prog1(var1='France')&lt;/FONT&gt; I'm afraid you have wandered around, and now have confused me.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can run this by extracting values from a table and without CALL EXECUTE, if you want (but it sounds like you don't want to).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you want to do this without CALL EXECUTE, I can show you how. Since I rarely use CALL EXECUTE to call macros, I will let someone else help you.&lt;/P&gt;</description>
      <pubDate>Sat, 17 Jul 2021 16:31:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-sql-within-macro-where-clause-take-values-from-macro/m-p/754775#M238097</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2021-07-17T16:31:34Z</dc:date>
    </item>
    <item>
      <title>Re: Proc sql within macro - where clause take values from macro variable containing list of values</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-sql-within-macro-where-clause-take-values-from-macro/m-p/754776#M238098</link>
      <description>ok. without call execute is fine</description>
      <pubDate>Sat, 17 Jul 2021 16:32:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-sql-within-macro-where-clause-take-values-from-macro/m-p/754776#M238098</guid>
      <dc:creator>VCucu</dc:creator>
      <dc:date>2021-07-17T16:32:05Z</dc:date>
    </item>
    <item>
      <title>Re: Proc sql within macro - where clause take values from macro variable containing list of values</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-sql-within-macro-where-clause-take-values-from-macro/m-p/754779#M238100</link>
      <description>&lt;P&gt;Why include the commas?&amp;nbsp; You don't need them, the IN operator is happy to accept space delimited list.&amp;nbsp; And they just make passing the value via a macro call complicated.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%prog1(var= 'France' 'Italy');&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 17 Jul 2021 16:41:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-sql-within-macro-where-clause-take-values-from-macro/m-p/754779#M238100</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2021-07-17T16:41:38Z</dc:date>
    </item>
    <item>
      <title>Re: Proc sql within macro - where clause take values from macro variable containing list of values</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-sql-within-macro-where-clause-take-values-from-macro/m-p/754781#M238101</link>
      <description>indeed.it works. thank you very much</description>
      <pubDate>Sat, 17 Jul 2021 16:45:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-sql-within-macro-where-clause-take-values-from-macro/m-p/754781#M238101</guid>
      <dc:creator>VCucu</dc:creator>
      <dc:date>2021-07-17T16:45:13Z</dc:date>
    </item>
  </channel>
</rss>

