<?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: Matching columns from macro variable to dataset in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Matching-columns-from-macro-variable-to-dataset/m-p/514955#M138906</link>
    <description>&lt;P&gt;You have 2 columns, they are called test1 and test2 .&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Are you trying to check if the datasets are identical?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 21 Nov 2018 00:05:41 GMT</pubDate>
    <dc:creator>34reqrwe</dc:creator>
    <dc:date>2018-11-21T00:05:41Z</dc:date>
    <item>
      <title>Matching columns from macro variable to dataset</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Matching-columns-from-macro-variable-to-dataset/m-p/514924#M138888</link>
      <description>&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;I have&amp;nbsp; a dataset&amp;nbsp; X which has these columns Apple1, Apple2, Orange1, Orange2. Another Dataset Y which looks like below in Dataset Y I have taken list of items I need to check in Data X whether they exist or not . Also, while checking when Apple1 is existing Orange1 should also exist in X dataset . Same thing when Apple2 is existing then Orange2 should also exist then only create output . I am using below code by using prxmatch but it doesnot work&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE border="0" cellspacing="0" cellpadding="0"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;FONT color="#000000" face="Arial" size="3"&gt;test1&lt;/FONT&gt;&lt;/TD&gt;&lt;TD&gt;&lt;FONT color="#000000" face="Arial" size="3"&gt;test2&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;FONT color="#000000" face="Arial" size="3"&gt;Apple1&lt;/FONT&gt;&lt;/TD&gt;&lt;TD&gt;&lt;FONT color="#000000" face="Arial" size="3"&gt;Orange1&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;FONT color="#000000" face="Arial" size="3"&gt;Apple2&lt;/FONT&gt;&lt;/TD&gt;&lt;TD&gt;&lt;FONT color="#000000" face="Arial" size="3"&gt;Orange2&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;STRONG&gt;proc&lt;/STRONG&gt;&lt;/FONT&gt; &lt;STRONG&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;contents&lt;/FONT&gt;&lt;/STRONG&gt; &lt;FONT color="#0000ff" face="Courier New" size="3"&gt;data&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;= X &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;noprint&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Courier New" size="3"&gt;out&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;=&amp;nbsp;GTAB&amp;nbsp;(&lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;keep&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;=name &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;varnum&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;);&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;run&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;Then created Y table which looks like below &lt;/FONT&gt;&lt;/P&gt;&lt;TABLE border="0" cellspacing="0" cellpadding="0"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;FONT color="#000000" face="Arial" size="3"&gt;test1&lt;/FONT&gt;&lt;/TD&gt;&lt;TD&gt;&lt;FONT color="#000000" face="Arial" size="3"&gt;test2&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;FONT color="#000000" face="Arial" size="3"&gt;Apple1&lt;/FONT&gt;&lt;/TD&gt;&lt;TD&gt;&lt;FONT color="#000000" face="Arial" size="3"&gt;Orange1&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;FONT color="#000000" face="Arial" size="3"&gt;Apple2&lt;/FONT&gt;&lt;/TD&gt;&lt;TD&gt;&lt;FONT color="#000000" face="Arial" size="3"&gt;Orange2&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;STRONG&gt;data&lt;/STRONG&gt;&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Courier New" size="3"&gt;_null_&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;set&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; Y;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;call&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; symput(&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="3"&gt;'wrd1'&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;||left(_n_), strip(test1));&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;call&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; symput(&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="3"&gt;'wrd2'&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;||left(_n_), strip(test2));&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;CALL&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; SYMPUT( &lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="3"&gt;'Total'&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; , _N_ );&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;STRONG&gt;%MACRO&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; &lt;STRONG&gt;&lt;I&gt;LOOP&lt;/I&gt;&lt;/STRONG&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;data temp2;&lt;/P&gt;&lt;P&gt;set &amp;nbsp;X ;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;%do&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; i=&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;1&lt;/FONT&gt;&lt;/STRONG&gt; &lt;FONT color="#0000ff" face="Courier New" size="3"&gt;%to&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; &amp;amp;Total;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;if (prxmatch(&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="3"&gt;"/&amp;amp;&amp;amp;wrd1&amp;amp;i./"&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;,NAME) gt &lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;0&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="3"&gt; and prxmatch(&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="3"&gt;"/&amp;amp;&amp;amp;wrd2&amp;amp;i./"&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;,NAME) gt &lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;0&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="3"&gt;) then output ;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;%end&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;STRONG&gt;%mend&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;%&lt;STRONG&gt;&lt;I&gt;loop&lt;/I&gt;&lt;/STRONG&gt;;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But this condition is not working and dataset temp2 is empty&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can anyone please help&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&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>Tue, 20 Nov 2018 21:07:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Matching-columns-from-macro-variable-to-dataset/m-p/514924#M138888</guid>
      <dc:creator>jhh197</dc:creator>
      <dc:date>2018-11-20T21:07:32Z</dc:date>
    </item>
    <item>
      <title>Re: Matching columns from macro variable to dataset</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Matching-columns-from-macro-variable-to-dataset/m-p/514955#M138906</link>
      <description>&lt;P&gt;You have 2 columns, they are called test1 and test2 .&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Are you trying to check if the datasets are identical?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Nov 2018 00:05:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Matching-columns-from-macro-variable-to-dataset/m-p/514955#M138906</guid>
      <dc:creator>34reqrwe</dc:creator>
      <dc:date>2018-11-21T00:05:41Z</dc:date>
    </item>
    <item>
      <title>Re: Matching columns from macro variable to dataset</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Matching-columns-from-macro-variable-to-dataset/m-p/514960#M138908</link>
      <description>&lt;P&gt;No need for macro logic to make the test.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data metadata ;
  input (test1 test2) (:$32.);
cards;
Apple1 Orange1
Apple2 Orange2
;

data x;
  length apple1 apple2 orange1 8;
run;

proc contents data= X noprint out= GTAB (keep=name varnum);
run;

proc sql ;
  create table check1 as
  select test1,test2
   ,(upcase(test1) in (select upcase(name) from gtab)) as check1
   ,(upcase(test2) in (select upcase(name) from gtab)) as check2
  from metadata
  ;
  select min(check1 and check2) into :all_pass trimmed from check1 ;
quit;

proc print data=check1;
run;
%put &amp;amp;=all_pass ;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 21 Nov 2018 01:06:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Matching-columns-from-macro-variable-to-dataset/m-p/514960#M138908</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2018-11-21T01:06:51Z</dc:date>
    </item>
    <item>
      <title>Re: Matching columns from macro variable to dataset</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Matching-columns-from-macro-variable-to-dataset/m-p/514972#M138912</link>
      <description>&lt;P&gt;You seem very confused indeed.&lt;/P&gt;
&lt;P&gt;Pay attention to what is called what.&lt;/P&gt;
&lt;P&gt;Like this?&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data X Y;
  TEST1='Apple1'; TEST2='Orange1'; output;
  TEST1='Apple2'; TEST2='Orange2'; output;
run;
   
proc contents data= X noprint out= GTAB (keep=name varnum);run;

data _null_;
  set GTAB;
  call symputx(catt('wrd1',_N_), TEST1);
  call symputx(cats('wrd2',_N_), TEST2);
  call symputx('total' , _N_ );
run;

data TEMP2;
  set Y ;
  do I=1 to &amp;amp;total.;
    if  prxmatch('/'||symget(cats('wrd1',I))||'/',TEST1) 
    and prxmatch('/'||symget(cats('wrd2',I))||'/',TEST2) then output;
  end;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;NOTE: The data set WORK.TEMP2 has 4 observations and 3 variables.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Nov 2018 02:48:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Matching-columns-from-macro-variable-to-dataset/m-p/514972#M138912</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2018-11-21T02:48:34Z</dc:date>
    </item>
    <item>
      <title>Re: Matching columns from macro variable to dataset</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Matching-columns-from-macro-variable-to-dataset/m-p/514976#M138916</link>
      <description>&lt;P&gt;My GTAB table looks like below&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE border="0" cellspacing="0" cellpadding="0"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;FONT color="#000000" face="Arial" size="3"&gt;Items&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;FONT color="#000000" face="Arial" size="3"&gt;Grape1&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;FONT color="#000000" face="Arial" size="3"&gt;Apple1&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;FONT color="#000000" face="Arial" size="3"&gt;Orange1&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;FONT color="#000000" face="Arial" size="3"&gt;Grape2&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;FONT color="#000000" face="Arial" size="3"&gt;Melon1&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;FONT color="#000000" face="Arial" size="3"&gt;Apple2&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now what I am trying to do is to pull all items from GTAB based on the mapping from Y table I created . So, we have Apple1, Orange1, Apple2 exists in GTAB which is also in mapping table Y . So my end dataset what I am looking for is like below&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE border="0" cellspacing="0" cellpadding="0"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;FONT color="#000000" face="Arial" size="3"&gt;test1&lt;/FONT&gt;&lt;/TD&gt;&lt;TD&gt;&lt;FONT color="#000000" face="Arial" size="3"&gt;test2&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;FONT color="#000000" face="Arial" size="3"&gt;Apple1&lt;/FONT&gt;&lt;/TD&gt;&lt;TD&gt;&lt;FONT color="#000000" face="Arial" size="3"&gt;Orange1&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I cant bring 2nd row from Y table because though we have Apple2 Orange 2 doesnot exist&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Wed, 21 Nov 2018 03:17:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Matching-columns-from-macro-variable-to-dataset/m-p/514976#M138916</guid>
      <dc:creator>jhh197</dc:creator>
      <dc:date>2018-11-21T03:17:29Z</dc:date>
    </item>
    <item>
      <title>Re: Matching columns from macro variable to dataset</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Matching-columns-from-macro-variable-to-dataset/m-p/515129#M138973</link>
      <description>&lt;P&gt;Hi Chris ,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you so much for taking time for helping me . I have tried this but here when you create Y table which doesn't have Orange1 in it .&amp;nbsp;Then the &amp;nbsp;output dataset should look like below but temp2 is empty this is what happening with my code too&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE border="0" cellspacing="0" cellpadding="0"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;FONT color="#000000" face="Arial" size="3"&gt;TEST1&lt;/FONT&gt;&lt;/TD&gt;&lt;TD&gt;&lt;FONT color="#000000" face="Arial" size="3"&gt;TEST2&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;FONT color="#000000" face="Arial" size="3"&gt;Apple2&lt;/FONT&gt;&lt;/TD&gt;&lt;TD&gt;&lt;FONT color="#000000" face="Arial" size="3"&gt;Orange2&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Nov 2018 15:40:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Matching-columns-from-macro-variable-to-dataset/m-p/515129#M138973</guid>
      <dc:creator>jhh197</dc:creator>
      <dc:date>2018-11-21T15:40:25Z</dc:date>
    </item>
    <item>
      <title>Re: Matching columns from macro variable to dataset</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Matching-columns-from-macro-variable-to-dataset/m-p/516826#M139623</link>
      <description>&lt;P&gt;Thank you so Much this one worked&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Wed, 28 Nov 2018 19:02:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Matching-columns-from-macro-variable-to-dataset/m-p/516826#M139623</guid>
      <dc:creator>jhh197</dc:creator>
      <dc:date>2018-11-28T19:02:02Z</dc:date>
    </item>
    <item>
      <title>Re: Matching columns from macro variable to dataset</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Matching-columns-from-macro-variable-to-dataset/m-p/516827#M139624</link>
      <description>&lt;P&gt;Thank you so much for all the help&lt;/P&gt;</description>
      <pubDate>Wed, 28 Nov 2018 19:03:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Matching-columns-from-macro-variable-to-dataset/m-p/516827#M139624</guid>
      <dc:creator>jhh197</dc:creator>
      <dc:date>2018-11-28T19:03:04Z</dc:date>
    </item>
  </channel>
</rss>

