<?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: using macro to create view for split dataset in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/using-macro-to-create-view-for-split-dataset/m-p/201731#M37654</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What do H1, H2, ...mean? 1st half, 2nd half of year etc...? you don't have dataset for 2011H1 in the directory?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 20 Aug 2015 16:24:44 GMT</pubDate>
    <dc:creator>ndp</dc:creator>
    <dc:date>2015-08-20T16:24:44Z</dc:date>
    <item>
      <title>using macro to create view for split dataset</title>
      <link>https://communities.sas.com/t5/SAS-Programming/using-macro-to-create-view-for-split-dataset/m-p/201721#M37644</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I encounter a problem how to dynamically create view on the datasets which are split by half-year. It starts from ABC_2011H1, &lt;SPAN style="font-size: 13.3333330154419px;"&gt;ABC_2011H2, ..., ABC_2015H1, etc.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If today is 2015.05.31, I would like to create view to append from &lt;SPAN style="font-size: 13.3333330154419px;"&gt;ABC_2011H1 to ABC_2015H1, like the following:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;proc sql;&lt;/P&gt;&lt;P&gt;create view ABC as&lt;/P&gt;&lt;P&gt;select * from &lt;SPAN style="font-size: 13.3333330154419px;"&gt;ABC_2011H1&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;union all&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;select * from &lt;/SPAN&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;ABC_2011H2&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;union all&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;...&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;...&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;select * from &lt;SPAN style="font-size: 13.3333330154419px;"&gt;ABC_2015H1&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;quit;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;I would like to make a macro/do-loop to achieve it. It can join based on date (upper half year/lower half year), not by hard-coding.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help.&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Aug 2015 14:04:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/using-macro-to-create-view-for-split-dataset/m-p/201721#M37644</guid>
      <dc:creator>DerekChan</dc:creator>
      <dc:date>2015-08-18T14:04:21Z</dc:date>
    </item>
    <item>
      <title>Re: using macro to create view for split dataset</title>
      <link>https://communities.sas.com/t5/SAS-Programming/using-macro-to-create-view-for-split-dataset/m-p/201722#M37645</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The techniques in this article can be applied to SQL views. perhaps ?. : &lt;A _jive_internal="true" href="https://communities.sas.com/message/245030#245030"&gt;How to append all dataset in one library&lt;/A&gt; (&lt;A _jive_internal="true" href="https://communities.sas.com/thread/64364"&gt;https://communities.sas.com/thread/64364&lt;/A&gt;).&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Aug 2015 14:23:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/using-macro-to-create-view-for-split-dataset/m-p/201722#M37645</guid>
      <dc:creator>PhilC</dc:creator>
      <dc:date>2015-08-18T14:23:47Z</dc:date>
    </item>
    <item>
      <title>Re: using macro to create view for split dataset</title>
      <link>https://communities.sas.com/t5/SAS-Programming/using-macro-to-create-view-for-split-dataset/m-p/201723#M37646</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thx for PhilC,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But the library that contains the target datasets also contains other dataset&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Aug 2015 14:30:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/using-macro-to-create-view-for-split-dataset/m-p/201723#M37646</guid>
      <dc:creator>DerekChan</dc:creator>
      <dc:date>2015-08-18T14:30:36Z</dc:date>
    </item>
    <item>
      <title>Re: using macro to create view for split dataset</title>
      <link>https://communities.sas.com/t5/SAS-Programming/using-macro-to-create-view-for-split-dataset/m-p/201724#M37647</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Take the code given and then modify to your specific situation&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;proc sql;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; select&amp;nbsp; MEMNAME&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; into&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; :MEMNAMES separated by ' '&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; from&amp;nbsp;&amp;nbsp;&amp;nbsp; DICTIONARY.TABLES&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; where&amp;nbsp; LIBNAME="WORK" &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; and substr(MEMNAME,1,3)="ABC";&amp;nbsp; /* Just update the where clauses here to fit your requirements */&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;P&gt;data want;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; set &amp;amp;MEMNAMES.;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Aug 2015 14:42:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/using-macro-to-create-view-for-split-dataset/m-p/201724#M37647</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2015-08-18T14:42:48Z</dc:date>
    </item>
    <item>
      <title>Re: using macro to create view for split dataset</title>
      <link>https://communities.sas.com/t5/SAS-Programming/using-macro-to-create-view-for-split-dataset/m-p/201725#M37648</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Works with views too...&lt;/P&gt;&lt;DIV style="font-family: Courier New; font-size: 11pt;"&gt;&lt;STRONG style="color: #000080; background-color: #ffffff;"&gt;proc&lt;/STRONG&gt; &lt;STRONG style="color: #000080; background-color: #ffffff;"&gt;sql&lt;/STRONG&gt; &lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;noprint&lt;/SPAN&gt;; &lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;select&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; compress(libname || &lt;/SPAN&gt;&lt;SPAN style="color: #800080; background-color: #ffffff;"&gt;"."&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; ||memname)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;into&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; :datasets separated by &lt;/SPAN&gt;&lt;SPAN style="color: #800080; background-color: #ffffff;"&gt;' '&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;from&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; Dictionary.tables&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;where&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; libname=&lt;/SPAN&gt;&lt;SPAN style="color: #800080; background-color: #ffffff;"&gt;"SASHELP"&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;AND&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #800080; background-color: #ffffff;"&gt;"B"&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&amp;lt;=memname&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color: #800080; background-color: #ffffff;"&gt;"D"&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;; &lt;/SPAN&gt;&lt;SPAN style="color: #008000; background-color: #ffffff;"&gt;*&amp;lt;-- Conditions on Dataset name go here;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;STRONG style="color: #000080; background-color: #ffffff;"&gt;quit&lt;/STRONG&gt;; &lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;%put&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; &amp;amp;datasets ;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV style="font-family: Courier New; font-size: 11pt;"&gt; &lt;/DIV&gt;&lt;DIV style="font-family: Courier New; font-size: 11pt;"&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;STRONG style="color: #000080; background-color: #ffffff;"&gt;data&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; ABC/&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;view&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;=ABC;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;set&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; &amp;amp;datasets;&lt;BR /&gt;&lt;/SPAN&gt;&lt;STRONG style="color: #000080; background-color: #ffffff;"&gt;run&lt;/STRONG&gt;; &lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Aug 2015 14:46:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/using-macro-to-create-view-for-split-dataset/m-p/201725#M37648</guid>
      <dc:creator>PhilC</dc:creator>
      <dc:date>2015-08-18T14:46:39Z</dc:date>
    </item>
    <item>
      <title>Re: using macro to create view for split dataset</title>
      <link>https://communities.sas.com/t5/SAS-Programming/using-macro-to-create-view-for-split-dataset/m-p/201726#M37649</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If the datasets all start with ABC then use a colon in the view&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data ABC/view=ABC;&lt;/P&gt;&lt;P&gt;set ABC:;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Aug 2015 15:07:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/using-macro-to-create-view-for-split-dataset/m-p/201726#M37649</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2015-08-18T15:07:00Z</dc:date>
    </item>
    <item>
      <title>Re: using macro to create view for split dataset</title>
      <link>https://communities.sas.com/t5/SAS-Programming/using-macro-to-create-view-for-split-dataset/m-p/201727#M37650</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;but we'll want to add conditions limiting the dataset that are not with in the time range.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Aug 2015 15:10:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/using-macro-to-create-view-for-split-dataset/m-p/201727#M37650</guid>
      <dc:creator>PhilC</dc:creator>
      <dc:date>2015-08-18T15:10:12Z</dc:date>
    </item>
    <item>
      <title>Re: using macro to create view for split dataset</title>
      <link>https://communities.sas.com/t5/SAS-Programming/using-macro-to-create-view-for-split-dataset/m-p/201728#M37651</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;I do agree this only works if there is a consistent naming convention and you want all datasets with the prefix. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;My interpretation was that it was from the start, but that there are other data sets in the same library. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __jive_macro_name="quote" class="jive_text_macro jive_macro_quote"&gt;
&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px; background-color: #ffffff;"&gt; It starts from ABC_2011H1, &lt;/SPAN&gt;&lt;SPAN style="font-size: 13.3333330154419px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;ABC_2011H2, ..., ABC_2015H1, etc.&lt;/SPAN&gt;&lt;/P&gt;
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Aug 2015 15:13:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/using-macro-to-create-view-for-split-dataset/m-p/201728#M37651</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2015-08-18T15:13:38Z</dc:date>
    </item>
    <item>
      <title>Re: using macro to create view for split dataset</title>
      <link>https://communities.sas.com/t5/SAS-Programming/using-macro-to-create-view-for-split-dataset/m-p/201729#M37652</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ok, it could be that simple. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Aug 2015 15:21:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/using-macro-to-create-view-for-split-dataset/m-p/201729#M37652</guid>
      <dc:creator>PhilC</dc:creator>
      <dc:date>2015-08-18T15:21:49Z</dc:date>
    </item>
    <item>
      <title>Re: using macro to create view for split dataset</title>
      <link>https://communities.sas.com/t5/SAS-Programming/using-macro-to-create-view-for-split-dataset/m-p/201730#M37653</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thx for both answering&lt;/P&gt;&lt;P&gt;I think it works for this simple situtation, but if I want to constraint it&lt;/P&gt;&lt;P&gt;if today is 2015 Apr 1, i would like to read ABC_2011H2, ABC_2012H1, ..., ABC_2015H1&lt;/P&gt;&lt;P&gt;2011H2 can be viewed as the fixed start, i.e. no ABC_2011H1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is because i want to reduce the risk that if the library contains new datasets that have the name similar to them&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data view = a.&lt;/P&gt;&lt;P&gt;is this statement different to proc sql create view in term of performance&lt;/P&gt;&lt;P&gt;becuase i will use to append huge data set piece along different period&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Aug 2015 14:54:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/using-macro-to-create-view-for-split-dataset/m-p/201730#M37653</guid>
      <dc:creator>DerekChan</dc:creator>
      <dc:date>2015-08-20T14:54:50Z</dc:date>
    </item>
    <item>
      <title>Re: using macro to create view for split dataset</title>
      <link>https://communities.sas.com/t5/SAS-Programming/using-macro-to-create-view-for-split-dataset/m-p/201731#M37654</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What do H1, H2, ...mean? 1st half, 2nd half of year etc...? you don't have dataset for 2011H1 in the directory?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Aug 2015 16:24:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/using-macro-to-create-view-for-split-dataset/m-p/201731#M37654</guid>
      <dc:creator>ndp</dc:creator>
      <dc:date>2015-08-20T16:24:44Z</dc:date>
    </item>
    <item>
      <title>Re: using macro to create view for split dataset</title>
      <link>https://communities.sas.com/t5/SAS-Programming/using-macro-to-create-view-for-split-dataset/m-p/201732#M37655</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can make a macro variable to hold them all together.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;data temp;
 do i=2011 to year(today())-1;
&amp;nbsp; do j=1,2;
&amp;nbsp;&amp;nbsp; tname=cats('work.ABC_',i,'H',j);output;
&amp;nbsp; end;
 end;
 if month(today()) lt 7 then do;tname=cats('work.ABC_',year(today()),'H1');output;end;
&amp;nbsp; else do; 
&amp;nbsp;&amp;nbsp; tname=cats('work.ABC_',year(today()),'H1');output;
&amp;nbsp;&amp;nbsp; tname=cats('work.ABC_',year(today()),'H2');output;
&amp;nbsp; end;
 drop i j;
run;
proc sql noprint;
 select catx(' ','select * from',tname) into : list separated by ' union all '
&amp;nbsp; from temp;
&amp;nbsp; 
 create view xxxx as
&amp;nbsp; &amp;amp;list ;
quit;

%put &amp;amp;list ;

&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Xia Keshan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Aug 2015 04:35:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/using-macro-to-create-view-for-split-dataset/m-p/201732#M37655</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2015-08-21T04:35:35Z</dc:date>
    </item>
  </channel>
</rss>

