<?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 set if dataset have same suffix in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/set-if-dataset-have-same-suffix/m-p/590907#M169194</link>
    <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data all;
set "%summary";//(All dataset where data name is suffix with "summary")
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I want to set all the data set if that suffix with summary.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there any way I can do that.&lt;/P&gt;</description>
    <pubDate>Mon, 23 Sep 2019 13:18:48 GMT</pubDate>
    <dc:creator>Srigyan</dc:creator>
    <dc:date>2019-09-23T13:18:48Z</dc:date>
    <item>
      <title>set if dataset have same suffix</title>
      <link>https://communities.sas.com/t5/SAS-Programming/set-if-dataset-have-same-suffix/m-p/590907#M169194</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data all;
set "%summary";//(All dataset where data name is suffix with "summary")
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I want to set all the data set if that suffix with summary.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there any way I can do that.&lt;/P&gt;</description>
      <pubDate>Mon, 23 Sep 2019 13:18:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/set-if-dataset-have-same-suffix/m-p/590907#M169194</guid>
      <dc:creator>Srigyan</dc:creator>
      <dc:date>2019-09-23T13:18:48Z</dc:date>
    </item>
    <item>
      <title>Re: set if dataset have same suffix</title>
      <link>https://communities.sas.com/t5/SAS-Programming/set-if-dataset-have-same-suffix/m-p/590911#M169195</link>
      <description>&lt;P&gt;One way..&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data onesuffix;
   a=1;
run;

data two;
   a=2;
run;

data threesuffix;
   a=3;
run;

proc sql noprint;
   select memname into :ds separated by ' ' 
   from dictionary.tables
   where libname='WORK' &amp;amp; memname like '%SUFFIX';
quit;

%put &amp;amp;ds.;

data want;
   set &amp;amp;ds.;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 23 Sep 2019 13:22:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/set-if-dataset-have-same-suffix/m-p/590911#M169195</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2019-09-23T13:22:37Z</dc:date>
    </item>
    <item>
      <title>Re: set if dataset have same suffix</title>
      <link>https://communities.sas.com/t5/SAS-Programming/set-if-dataset-have-same-suffix/m-p/590917#M169196</link>
      <description>&lt;P&gt;You are genius :).&lt;/P&gt;</description>
      <pubDate>Mon, 23 Sep 2019 13:35:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/set-if-dataset-have-same-suffix/m-p/590917#M169196</guid>
      <dc:creator>Srigyan</dc:creator>
      <dc:date>2019-09-23T13:35:43Z</dc:date>
    </item>
  </channel>
</rss>

