<?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: Passing a comma delimited variable to a Macro in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Passing-a-comma-delimited-variable-to-a-Macro/m-p/247876#M46501</link>
    <description>&lt;P&gt;Parenthesis of course.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;34         %MACRO test(cd);
35            %put NOTE: &amp;amp;=cd;
36            %let cd = %sysfunc(scan(%superq(cd),1,%str(%)%(),Q));
37            %put NOTE: &amp;amp;=cd;
38            %MEND;
39         
40         %let Trans_cd = 1387-D, 1419-D, 1383-D;
41         
42         %test((&amp;amp;Trans_cd))
NOTE: CD=(1387-D, 1419-D, 1383-D)
NOTE: CD=1387-D, 1419-D, 1383-D&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Wed, 03 Feb 2016 23:07:13 GMT</pubDate>
    <dc:creator>data_null__</dc:creator>
    <dc:date>2016-02-03T23:07:13Z</dc:date>
    <item>
      <title>Passing a comma delimited variable to a Macro</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Passing-a-comma-delimited-variable-to-a-Macro/m-p/247874#M46499</link>
      <description>&lt;P&gt;Hello Everyone,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am trying to pass a comma delimited macro variable to a macro.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I get an error that says "&amp;nbsp;ERROR: More positional parameters found than defined. "&amp;nbsp; Does anyone have any suggestions on how to make this macro work?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you very much in advance.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;%MACRO&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt; test(cd);&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;Proc SQL;&lt;/P&gt;
&lt;P&gt;Create Table AAA as&lt;/P&gt;
&lt;P&gt;SELECT DISTINCT Customer_ID, amount&lt;/P&gt;
&lt;P&gt;FROM Cust_Transaction&lt;/P&gt;
&lt;P&gt;Where&amp;nbsp;&lt;FONT face="Courier New" size="2"&gt;&lt;FONT face="Courier New" size="2"&gt;(Trans_Type_CD in (&amp;amp;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;cd.&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;&lt;FONT face="Courier New" size="2"&gt;)) &lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="2"&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/FONT&gt;QUIT;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;%MEND&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;%let&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; Trans_cd = 1387-D, 1419-D, 1383-D; &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="2"&gt;%&lt;STRONG&gt;&lt;I&gt;test&lt;/I&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;(&amp;amp;Trans_cd);&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 03 Feb 2016 22:34:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Passing-a-comma-delimited-variable-to-a-Macro/m-p/247874#M46499</guid>
      <dc:creator>KevinC_</dc:creator>
      <dc:date>2016-02-03T22:34:07Z</dc:date>
    </item>
    <item>
      <title>Re: Passing a comma delimited variable to a Macro</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Passing-a-comma-delimited-variable-to-a-Macro/m-p/247875#M46500</link>
      <description>&lt;P&gt;There are hoops you can jump through, using macro quoting functions.&amp;nbsp; But a better idea (in my opinion, of course) is to just pass the name of the macro variable:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;%MACRO&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt; test(cd);&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;Proc SQL;&lt;/P&gt;
&lt;P&gt;Create Table AAA as&lt;/P&gt;
&lt;P&gt;SELECT DISTINCT Customer_ID, amount&lt;/P&gt;
&lt;P&gt;FROM Cust_Transaction&lt;/P&gt;
&lt;P&gt;Where&amp;nbsp;&lt;FONT face="Courier New" size="2"&gt;&lt;FONT face="Courier New" size="2"&gt;(Trans_Type_CD in (&amp;amp;&amp;amp;&amp;amp;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;cd..&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;&lt;FONT face="Courier New" size="2"&gt;)) &lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="2"&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/FONT&gt;QUIT;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;%MEND&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;%let&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; Trans_cd = 1387-D, 1419-D, 1383-D; &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="2"&gt;%&lt;STRONG&gt;&lt;I&gt;test&lt;/I&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;(Trans_cd)&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The three ampersands inside the macro definition resolve &amp;amp;&amp;amp;&amp;amp;cd.. into &amp;amp;Trans_cd. which then re-resolves into your list of values.&lt;/P&gt;</description>
      <pubDate>Wed, 03 Feb 2016 22:38:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Passing-a-comma-delimited-variable-to-a-Macro/m-p/247875#M46500</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2016-02-03T22:38:25Z</dc:date>
    </item>
    <item>
      <title>Re: Passing a comma delimited variable to a Macro</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Passing-a-comma-delimited-variable-to-a-Macro/m-p/247876#M46501</link>
      <description>&lt;P&gt;Parenthesis of course.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;34         %MACRO test(cd);
35            %put NOTE: &amp;amp;=cd;
36            %let cd = %sysfunc(scan(%superq(cd),1,%str(%)%(),Q));
37            %put NOTE: &amp;amp;=cd;
38            %MEND;
39         
40         %let Trans_cd = 1387-D, 1419-D, 1383-D;
41         
42         %test((&amp;amp;Trans_cd))
NOTE: CD=(1387-D, 1419-D, 1383-D)
NOTE: CD=1387-D, 1419-D, 1383-D&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 03 Feb 2016 23:07:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Passing-a-comma-delimited-variable-to-a-Macro/m-p/247876#M46501</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2016-02-03T23:07:13Z</dc:date>
    </item>
    <item>
      <title>Re: Passing a comma delimited variable to a Macro</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Passing-a-comma-delimited-variable-to-a-Macro/m-p/247892#M46506</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%MACRO test(cd);
Proc SQL;
Create Table AAA as
SELECT *
FROM sashelp.class
Where findw("&amp;amp;Trans_cd",strip(sex))
;QUIT;
%MEND;
 
%let Trans_cd = F MM ;
 
%test(&amp;amp;Trans_cd)&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Change your code. You are searching a character variable.&lt;/P&gt;</description>
      <pubDate>Thu, 04 Feb 2016 01:52:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Passing-a-comma-delimited-variable-to-a-Macro/m-p/247892#M46506</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-02-04T01:52:22Z</dc:date>
    </item>
    <item>
      <title>Re: Passing a comma delimited variable to a Macro</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Passing-a-comma-delimited-variable-to-a-Macro/m-p/247923#M46519</link>
      <description>&lt;P&gt;Or you could just use Base SAS, put your "data" parameters in a "data" set, and then use that:&lt;/P&gt;
&lt;PRE&gt;proc sql;
  create table AAA as
  select  distinct CUSTOMER_ID,
          AMOUNT
  from    CUST_TRANSACTION
  where   TRANS_TYPE_CD in (select distinct CD from PARAMETER_DATASET);
quit;&lt;/PRE&gt;
&lt;P&gt;No need for any macro language, just plain simple Base SAS coding, and the full functionality of that language.&lt;/P&gt;</description>
      <pubDate>Thu, 04 Feb 2016 09:13:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Passing-a-comma-delimited-variable-to-a-Macro/m-p/247923#M46519</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2016-02-04T09:13:32Z</dc:date>
    </item>
    <item>
      <title>Re: Passing a comma delimited variable to a Macro</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Passing-a-comma-delimited-variable-to-a-Macro/m-p/247924#M46520</link>
      <description>&lt;P&gt;Replace the Where-line with:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;Where (Trans_Type_CD in (&lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;%Sysfunc&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;(TranWrd(&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="3"&gt;"&amp;amp;cd."&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;,&lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;%Str&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;(, ),&lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;%Str&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;(", "))))) &lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 04 Feb 2016 09:19:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Passing-a-comma-delimited-variable-to-a-Macro/m-p/247924#M46520</guid>
      <dc:creator>user24feb</dc:creator>
      <dc:date>2016-02-04T09:19:28Z</dc:date>
    </item>
    <item>
      <title>Re: Passing a comma delimited variable to a Macro</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Passing-a-comma-delimited-variable-to-a-Macro/m-p/247970#M46532</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/16509"&gt;@KevinC_﻿&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You could mask the commas with the %STR function: &lt;FONT face="courier new,courier"&gt;%let Trans_cd = %str(&lt;SPAN&gt;1387-D, 1419-D, 1383-D&lt;/SPAN&gt;&lt;/FONT&gt;&lt;FONT face="courier new,courier"&gt;);&lt;/FONT&gt;&lt;BR /&gt;However, the more serious issue are the missing quotes around your character constants 1387-D etc. (see user24feb's post).&amp;nbsp;Also, the IN operator doesn't require commas, but accepts blanks as separators as well.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;So, you could resolve both issues at once by simply writing:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let Trans_cd = '1387-D' '1419-D' '1383-D';&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 04 Feb 2016 13:51:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Passing-a-comma-delimited-variable-to-a-Macro/m-p/247970#M46532</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2016-02-04T13:51:32Z</dc:date>
    </item>
    <item>
      <title>Re: Passing a comma delimited variable to a Macro</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Passing-a-comma-delimited-variable-to-a-Macro/m-p/247982#M46537</link>
      <description>&lt;P&gt;Thank you all for your help!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I tried some of your suggestions and changed my Where statement&amp;nbsp; as below :&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;WHERE (Trans_Type_CD in (&amp;amp;&amp;amp;&amp;amp;tran_cd.))&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="2"&gt;Where (Trans_Type_CD in (&lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;%Sysfunc&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;(TranWrd(&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;"&amp;amp;tran_cd."&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;,&lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;%Str&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;(, ),&lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;%Str&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;(", ")))))&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The rest of the query remains the same.&amp;nbsp; I got this error:&lt;/P&gt;
&lt;P&gt;ERROR: All positional parameters must precede keyword parameters&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Any suggestions?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 04 Feb 2016 14:51:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Passing-a-comma-delimited-variable-to-a-Macro/m-p/247982#M46537</guid>
      <dc:creator>KevinC_</dc:creator>
      <dc:date>2016-02-04T14:51:02Z</dc:date>
    </item>
    <item>
      <title>Re: Passing a comma delimited variable to a Macro</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Passing-a-comma-delimited-variable-to-a-Macro/m-p/247997#M46544</link>
      <description>&lt;P&gt;Two issues regarding my suggestion ...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;First, to get the correct SAS syntax in a WHERE statement, you do have to add the quotes.&amp;nbsp; This won't work:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;%let Trans_cd = 1387-D, 1419-D, 1383-D;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You need quotes added around a list of character values in an IN list.&amp;nbsp; Several variations are possible, this being one:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;%let Trans_cd = "1387-D", "1419-D", "1383-D";&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Second, you need to change the macro call.&amp;nbsp; It should use Trans_cd, not &amp;amp;Trans_cd:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;%test (Trans_cd)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There are plenty of other workable suggestions here.&amp;nbsp; But these changes should get my &amp;amp;&amp;amp;&amp;amp; variation to work.&lt;/P&gt;</description>
      <pubDate>Thu, 04 Feb 2016 15:16:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Passing-a-comma-delimited-variable-to-a-Macro/m-p/247997#M46544</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2016-02-04T15:16:38Z</dc:date>
    </item>
    <item>
      <title>Re: Passing a comma delimited variable to a Macro</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Passing-a-comma-delimited-variable-to-a-Macro/m-p/248001#M46545</link>
      <description>&lt;P&gt;Hm, you are right. This code will work (but if it was my code, I would not define Trans_cd with a comma in the first place):&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;
Data Cust_Transaction;
  Length Trans_Type_CD $6.;
  Trans_Type_CD='DFEE'; Output;
  Trans_Type_CD='1387-D'; Output;
  Trans_Type_CD='1419-D'; Output;
Run;

%MACRO test(cd);
%Put **CHECK**&amp;amp;cd.**;
Proc SQL;
Create Table AAA as
SELECT DISTINCT *
FROM Cust_Transaction
Where (Trans_Type_CD in (%Sysfunc(TranWrd("&amp;amp;cd.",%Str(, ),%Str(", "))))) 
;QUIT;
%MEND;
 
%let Trans_cd = 1387-D, 1419-D, 1383-D; 

%test(%BQuote(&amp;amp;Trans_cd.));
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 04 Feb 2016 15:22:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Passing-a-comma-delimited-variable-to-a-Macro/m-p/248001#M46545</guid>
      <dc:creator>user24feb</dc:creator>
      <dc:date>2016-02-04T15:22:40Z</dc:date>
    </item>
    <item>
      <title>Re: Passing a comma delimited variable to a Macro</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Passing-a-comma-delimited-variable-to-a-Macro/m-p/248094#M46571</link>
      <description>&lt;P&gt;Thank you everyone for your input again!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I used user24feb's suggestion and it worked for me.&amp;nbsp; Thank you user24feb! :)&lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.sas.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 04 Feb 2016 21:10:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Passing-a-comma-delimited-variable-to-a-Macro/m-p/248094#M46571</guid>
      <dc:creator>KevinC_</dc:creator>
      <dc:date>2016-02-04T21:10:41Z</dc:date>
    </item>
  </channel>
</rss>

