<?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: creating SAS dataset in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/creating-SAS-dataset/m-p/320145#M70459</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If there is no particular criterion to select which data goes where, the following program should do what you want.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want1 want2 want3 want4;
set sashelp.class;
if mod(_N_,4)=0 then output want1;
if mod(_N_,4)=1 then output want2;
if mod(_N_,4)=2 then output want3;
if mod(_N_,4)=3 then output want4;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Tue, 20 Dec 2016 09:33:56 GMT</pubDate>
    <dc:creator>gamotte</dc:creator>
    <dc:date>2016-12-20T09:33:56Z</dc:date>
    <item>
      <title>creating SAS dataset</title>
      <link>https://communities.sas.com/t5/SAS-Programming/creating-SAS-dataset/m-p/320142#M70458</link>
      <description>&lt;P&gt;I have a dataset and I want one fourth of observation to go in &amp;nbsp;one dataset and another one fouth to a different dataset and another one fourth to different dataset and so on &amp;nbsp;.How can i do this&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Dec 2016 09:26:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/creating-SAS-dataset/m-p/320142#M70458</guid>
      <dc:creator>Rohit12</dc:creator>
      <dc:date>2016-12-20T09:26:19Z</dc:date>
    </item>
    <item>
      <title>Re: creating SAS dataset</title>
      <link>https://communities.sas.com/t5/SAS-Programming/creating-SAS-dataset/m-p/320145#M70459</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If there is no particular criterion to select which data goes where, the following program should do what you want.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want1 want2 want3 want4;
set sashelp.class;
if mod(_N_,4)=0 then output want1;
if mod(_N_,4)=1 then output want2;
if mod(_N_,4)=2 then output want3;
if mod(_N_,4)=3 then output want4;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 20 Dec 2016 09:33:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/creating-SAS-dataset/m-p/320145#M70459</guid>
      <dc:creator>gamotte</dc:creator>
      <dc:date>2016-12-20T09:33:56Z</dc:date>
    </item>
    <item>
      <title>Re: creating SAS dataset</title>
      <link>https://communities.sas.com/t5/SAS-Programming/creating-SAS-dataset/m-p/320151#M70461</link>
      <description>&lt;P&gt;&amp;nbsp;what i want first four observation should go to want1 dataset &amp;nbsp;and then next four to want2 and so on&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Dec 2016 09:44:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/creating-SAS-dataset/m-p/320151#M70461</guid>
      <dc:creator>Rohit12</dc:creator>
      <dc:date>2016-12-20T09:44:10Z</dc:date>
    </item>
    <item>
      <title>Re: creating SAS dataset</title>
      <link>https://communities.sas.com/t5/SAS-Programming/creating-SAS-dataset/m-p/320160#M70466</link>
      <description>&lt;P&gt;I will go with a macro (sorry RW9)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%macro create_data;
	proc sql;
		SELECT ceil(count(*)/4)
		INTO :nbdatasets
		FROM sashelp.class;
	quit;

	%let datasets=;

	%do i=1 %to &amp;amp;nbdatasets.;
	   %let datasets=&amp;amp;datasets want&amp;amp;i.;
	%end;

	data &amp;amp;datasets.;

		set sashelp.class;

		%do i=1 %to &amp;amp;nbdatasets.;
		    if ceil(_N_/4)=&amp;amp;i. then output want&amp;amp;i.;
		%end;

	run;
%mend;

%create_data;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 20 Dec 2016 09:57:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/creating-SAS-dataset/m-p/320160#M70466</guid>
      <dc:creator>gamotte</dc:creator>
      <dc:date>2016-12-20T09:57:17Z</dc:date>
    </item>
    <item>
      <title>Re: creating SAS dataset</title>
      <link>https://communities.sas.com/t5/SAS-Programming/creating-SAS-dataset/m-p/320162#M70468</link>
      <description>&lt;P&gt;Seeing as you invoked my macros aversions&amp;nbsp;&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;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;data _null_;
  set sashelp.vtable (where=(libname="WORK" and memname="&amp;lt;yourds&amp;gt;"));
  do i=1 to nobs by 4;
    call execute(cats('data want',put(i,best.),'; set work.&amp;lt;yourds&amp;gt; point=',put(i,best.),' obs=4; run;'));
  end;
run;&lt;/PRE&gt;
&lt;P&gt;That being said however, I would really question the need to split your data up in the first place. &amp;nbsp;The question is why? &amp;nbsp;SAS is built around the concept of by group processing, each of the functions are optimised to do thing over groups. &amp;nbsp;Read/write to dataset is one of the biggest resource hogs in most proceses. &amp;nbsp;So why not in your one dataset assign a group value, e.g. a number which starts at 1 and then increment by one each 4 observations. &amp;nbsp;You can then do:&lt;/P&gt;
&lt;PRE&gt;proc means data=have;
  by group;
  ...
&lt;/PRE&gt;
&lt;P&gt;For example to get a means for each group. &amp;nbsp;Its also far simpler code.&lt;/P&gt;</description>
      <pubDate>Tue, 20 Dec 2016 10:47:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/creating-SAS-dataset/m-p/320162#M70468</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2016-12-20T10:47:13Z</dc:date>
    </item>
    <item>
      <title>Re: creating SAS dataset</title>
      <link>https://communities.sas.com/t5/SAS-Programming/creating-SAS-dataset/m-p/320163#M70469</link>
      <description>&lt;P&gt;A variation of&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/30622"&gt;@gamotte&lt;/a&gt;&amp;nbsp;initial post which splits up the data as per your requirement.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want1 want2 want3 want4;
  set sashelp.class;
  select ( mod(floor((_N_-1)/4),4) );
    when (0) output want1;
    when (1) output want2;
    when (2) output want3;
    when (3) output want4;
    otherwise;
    end;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 20 Dec 2016 10:17:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/creating-SAS-dataset/m-p/320163#M70469</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2016-12-20T10:17:19Z</dc:date>
    </item>
    <item>
      <title>Re: creating SAS dataset</title>
      <link>https://communities.sas.com/t5/SAS-Programming/creating-SAS-dataset/m-p/320165#M70470</link>
      <description>Didn't you mean dictionary.columns rather than sashelp.class ?</description>
      <pubDate>Tue, 20 Dec 2016 10:20:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/creating-SAS-dataset/m-p/320165#M70470</guid>
      <dc:creator>gamotte</dc:creator>
      <dc:date>2016-12-20T10:20:01Z</dc:date>
    </item>
    <item>
      <title>Re: creating SAS dataset</title>
      <link>https://communities.sas.com/t5/SAS-Programming/creating-SAS-dataset/m-p/320173#M70471</link>
      <description>&lt;PRE&gt;
%let dsid=%sysfunc(open(sashelp.class));
%let nobs=%sysfunc(attrn(&amp;amp;dsid,nlobs));
%let n=%sysevalf(&amp;amp;nobs/4,i);
%let dsid=%sysfunc(close(&amp;amp;dsid));

data want1 want2 want3 want4;
 set sashelp.class;
 if _n_ le &amp;amp;n then output want1;
  else if _n_ le 2*&amp;amp;n then output want2;
   else if _n_ le 3*&amp;amp;n then output want3;
    else output want4;
run;
&lt;/PRE&gt;</description>
      <pubDate>Tue, 20 Dec 2016 10:37:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/creating-SAS-dataset/m-p/320173#M70471</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-12-20T10:37:27Z</dc:date>
    </item>
    <item>
      <title>Re: creating SAS dataset</title>
      <link>https://communities.sas.com/t5/SAS-Programming/creating-SAS-dataset/m-p/320176#M70474</link>
      <description>&lt;P&gt;If you want randomly select obs ,try proc surveyselect.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc surveyselect data=sashelp.class groups=4 out=temp;
run;
data want1 want2 want3 want4;
 set temp;
 if groupid=1 then output want1;
  else if groupid=2 then output want2;
   else if groupid=3 then output want3;
    else output want4;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 20 Dec 2016 10:45:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/creating-SAS-dataset/m-p/320176#M70474</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-12-20T10:45:58Z</dc:date>
    </item>
    <item>
      <title>Re: creating SAS dataset</title>
      <link>https://communities.sas.com/t5/SAS-Programming/creating-SAS-dataset/m-p/320178#M70475</link>
      <description>&lt;P&gt;Nah, I meant sashelp.vtable (corrected now) or you could use dictionary.tables. &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Dec 2016 10:48:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/creating-SAS-dataset/m-p/320178#M70475</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2016-12-20T10:48:00Z</dc:date>
    </item>
    <item>
      <title>Re: creating SAS dataset</title>
      <link>https://communities.sas.com/t5/SAS-Programming/creating-SAS-dataset/m-p/320186#M70479</link>
      <description>this code will work for sashelp.class but what If my dataset is having 1000 rows then it will create 250 datasets .But what I want is 4 datasets only</description>
      <pubDate>Tue, 20 Dec 2016 11:23:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/creating-SAS-dataset/m-p/320186#M70479</guid>
      <dc:creator>Rohit12</dc:creator>
      <dc:date>2016-12-20T11:23:33Z</dc:date>
    </item>
    <item>
      <title>Re: creating SAS dataset</title>
      <link>https://communities.sas.com/t5/SAS-Programming/creating-SAS-dataset/m-p/320188#M70481</link>
      <description>&lt;P&gt;Sorry, hard to tell if thats a response to my code, so will add. &amp;nbsp;If you only want four tables then&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/12447"&gt;@Patrick&lt;/a&gt;&amp;nbsp;has a good solution, you just need to fiddle with the select part. &amp;nbsp;However still better to assign groups in the one dataset, and then use by group processing.&lt;/P&gt;</description>
      <pubDate>Tue, 20 Dec 2016 11:36:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/creating-SAS-dataset/m-p/320188#M70481</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2016-12-20T11:36:48Z</dc:date>
    </item>
    <item>
      <title>Re: creating SAS dataset</title>
      <link>https://communities.sas.com/t5/SAS-Programming/creating-SAS-dataset/m-p/320191#M70482</link>
      <description>I have a dataset which has 1000 rows and I want 4 different datasets to be created with each having 250 rows for ex want1 should have rows from 1 to 250 and want 2 to have from 251 to 500&lt;BR /&gt;&lt;BR /&gt;will your code wok ?</description>
      <pubDate>Tue, 20 Dec 2016 11:47:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/creating-SAS-dataset/m-p/320191#M70482</guid>
      <dc:creator>Rohit12</dc:creator>
      <dc:date>2016-12-20T11:47:35Z</dc:date>
    </item>
    <item>
      <title>Re: creating SAS dataset</title>
      <link>https://communities.sas.com/t5/SAS-Programming/creating-SAS-dataset/m-p/320203#M70485</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/120326"&gt;@Rohit12&lt;/a&gt; wrote:&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;will your code wok ?&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;TRY.IT.&lt;/P&gt;</description>
      <pubDate>Tue, 20 Dec 2016 13:13:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/creating-SAS-dataset/m-p/320203#M70485</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2016-12-20T13:13:44Z</dc:date>
    </item>
    <item>
      <title>Re: creating SAS dataset</title>
      <link>https://communities.sas.com/t5/SAS-Programming/creating-SAS-dataset/m-p/320218#M70489</link>
      <description>&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18408"&gt;@Ksharp&lt;/a&gt;'s solution seems to be what you want.&lt;BR /&gt;&lt;BR /&gt;In order to get correct answers, you should put a little more effort in explaining exactly what is the desired output because :&lt;BR /&gt;"I have a dataset and I want one fourth of observation to go in  one dataset and another one fouth to a different dataset and another one fourth to different dataset and so on"&lt;BR /&gt;and&lt;BR /&gt;" what i want first four observation should go to want1 dataset  and then next four to want2 and so on"&lt;BR /&gt;seem to be two completely different demands.&lt;BR /&gt;&lt;BR /&gt;"want1 should have rows from 1 to 250 and want 2 to have from 251 to 500" is a precision you should have made in your first post.&lt;BR /&gt;&lt;BR /&gt;You'll get better answers quicker and it will avoid unnecessary work to contributors.</description>
      <pubDate>Tue, 20 Dec 2016 13:46:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/creating-SAS-dataset/m-p/320218#M70489</guid>
      <dc:creator>gamotte</dc:creator>
      <dc:date>2016-12-20T13:46:15Z</dc:date>
    </item>
    <item>
      <title>Re: creating SAS dataset</title>
      <link>https://communities.sas.com/t5/SAS-Programming/creating-SAS-dataset/m-p/320269#M70504</link>
      <description>&lt;P&gt;If you want to specify specific sequences of observations here is one way:&lt;/P&gt;
&lt;PRE&gt; data junk1 ;
 set have(firstobs=1 obs=250 );
 run;

 data junk2 ;
 set have(firstobs=251 obs=500);
 run;&lt;/PRE&gt;
&lt;P&gt;but the question does beg for an answer of what gets done with an apparently arbitrary number of records.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Dec 2016 15:17:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/creating-SAS-dataset/m-p/320269#M70504</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2016-12-20T15:17:38Z</dc:date>
    </item>
    <item>
      <title>Re: creating SAS dataset</title>
      <link>https://communities.sas.com/t5/SAS-Programming/creating-SAS-dataset/m-p/320305#M70524</link>
      <description>&lt;P&gt;With an arbitrary number of records, the best way may be to find the number of records first, e.g.:&lt;/P&gt;&lt;PRE&gt;data _null_;
  call symputx('nobs',nobs);&lt;BR /&gt;  stop;
  set have nobs=nobs;&lt;BR /&gt;run;

data want1;
  set have(obs=%eval(&amp;amp;nobs/4));
run;

data want2;
  set have(firstobs=%eval(&amp;amp;nobs/4+1) obs=%eval(&amp;amp;nobs/2));
run;

data want3;
  set have(firstobs=%eval(&amp;amp;nobs/2+1) obs=%eval(3*&amp;amp;nobs/4));
run;

data want4;
  set have(firstobs=%eval(3*&amp;amp;nobs/4+1));
run;&lt;/PRE&gt;&lt;P&gt;As shown, it needs a little familiarity with SAS macro language. Which is hard to avoid if you want to do this kind of "advanced" stuff.&lt;/P&gt;</description>
      <pubDate>Tue, 20 Dec 2016 17:11:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/creating-SAS-dataset/m-p/320305#M70524</guid>
      <dc:creator>s_lassen</dc:creator>
      <dc:date>2016-12-20T17:11:51Z</dc:date>
    </item>
    <item>
      <title>Re: creating SAS dataset</title>
      <link>https://communities.sas.com/t5/SAS-Programming/creating-SAS-dataset/m-p/320317#M70529</link>
      <description>&lt;P&gt;Hope this macro program will be helpful.&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; test(lib=,ds=);&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;proc sql;&lt;/P&gt;&lt;P&gt;select count(*) INTO: nobs&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;from &amp;amp;&lt;/FONT&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;lib.&lt;STRONG&gt;.&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;&amp;amp;&lt;/FONT&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;ds.&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; ;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;Quit;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;%put&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; &amp;amp;nobs;&lt;/FONT&gt;&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;0&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;&lt;/FONT&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;nobs.&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Courier New" size="3"&gt;%by&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;(CEIL(&amp;amp;&lt;/FONT&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;nobs.&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;/&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;4&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="3"&gt;)) ;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;data out&amp;amp;i;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;set &amp;amp;&lt;/FONT&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;lib.&lt;STRONG&gt;.&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;&amp;amp;&lt;/FONT&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;ds.&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;(firstobs=&lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;%EVAL&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;(&amp;amp;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 face="Courier New" size="3"&gt;) obs=&lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;%EVAL&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;((&amp;amp;&lt;/FONT&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;nobs.&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;/&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;4&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="3"&gt;)+&amp;amp;i) ) ;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;run;&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;&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;&lt;FONT face="Courier New" size="3"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;%&lt;STRONG&gt;&lt;I&gt;test&lt;/I&gt;&lt;/STRONG&gt;(lib=sashelp,ds=class);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Dec 2016 18:00:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/creating-SAS-dataset/m-p/320317#M70529</guid>
      <dc:creator>SuryaKiran</dc:creator>
      <dc:date>2016-12-20T18:00:36Z</dc:date>
    </item>
  </channel>
</rss>

