<?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 Dataset using Variables defined outside of DATA in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Creating-Dataset-using-Variables-defined-outside-of-DATA/m-p/853266#M41988</link>
    <description>&lt;P&gt;Hello,&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/438379"&gt;@rajbhinde&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think this gets you to what you want. I think you have to read in the original data as character strings and then use the VVALUEX function, as you can't do this entirely with DATALINES&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;Data Test;
input var1 $  var2 $  var3 $;
datalines;
a b c 
99 b c
a 85 c
a b 33
;
data want;
a=1; b=2; c=3;
set test;
if anydigit(var1)^=0 then finalvar1=input(var1,10.);
else finalvar1=vvaluex(var1);
if anydigit(var2)^=0 then finalvar2=input(var2,10.);
else finalvar2=vvaluex(var2);
if anydigit(var3)^=0 then finalvar3=input(var3,10.);
else finalvar3=vvaluex(var3);
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 11 Jan 2023 15:06:11 GMT</pubDate>
    <dc:creator>PaigeMiller</dc:creator>
    <dc:date>2023-01-11T15:06:11Z</dc:date>
    <item>
      <title>Creating Dataset using Variables defined outside of DATA</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Creating-Dataset-using-Variables-defined-outside-of-DATA/m-p/853244#M41979</link>
      <description>&lt;P&gt;Hi!&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Let's assume I am creating dataset like this&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;input a b c;
datalines;
1 1 1
2 2 2&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This works fine.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What am trying to create -&lt;/P&gt;&lt;PRE&gt;a = 1;
b = 2;
c = 3;
input a b c;
datalines;
a b c 
a b c&lt;/PRE&gt;&lt;P&gt;Basically, I want to create a dataset based on the values present inside a variable &amp;amp; this value is coming via a loop hence is different every time &amp;amp; cannot be hard coded.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jan 2023 13:17:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Creating-Dataset-using-Variables-defined-outside-of-DATA/m-p/853244#M41979</guid>
      <dc:creator>rajbhinde</dc:creator>
      <dc:date>2023-01-11T13:17:40Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Dataset using Variables defined outside of DATA</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Creating-Dataset-using-Variables-defined-outside-of-DATA/m-p/853246#M41980</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/438379"&gt;@rajbhinde&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What am trying to create -&lt;/P&gt;
&lt;PRE&gt;a = 1;
b = 2;
c = 3;
input a b c;
datalines;
a b c 
a b c&lt;/PRE&gt;
&lt;P&gt;Basically, I want to create a dataset based on the values present inside a variable &amp;amp; this value is coming via a loop hence is different every time &amp;amp; cannot be hard coded.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;I don't understand what you want. Please show us what you want, a screen capture is fine for showing us what you want. If you are going to show us SAS code (as above), please show us complete SAS data steps, not partial data steps.&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jan 2023 13:43:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Creating-Dataset-using-Variables-defined-outside-of-DATA/m-p/853246#M41980</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2023-01-11T13:43:01Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Dataset using Variables defined outside of DATA</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Creating-Dataset-using-Variables-defined-outside-of-DATA/m-p/853248#M41981</link>
      <description>&lt;P&gt;Is this what you want to do?&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want ;
	do i=1 to 5 ;
		a=i ;
		b=i ;
		c=i ;
		output want ;
	end ;
run ;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;BR /&gt;If not then I suggest you provide a clear example of the dataset you want to create&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jan 2023 13:54:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Creating-Dataset-using-Variables-defined-outside-of-DATA/m-p/853248#M41981</guid>
      <dc:creator>AMSAS</dc:creator>
      <dc:date>2023-01-11T13:54:06Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Dataset using Variables defined outside of DATA</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Creating-Dataset-using-Variables-defined-outside-of-DATA/m-p/853249#M41982</link>
      <description>&lt;P&gt;I have a set of variables that get their value based on an if else condition -&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;if a = 1 then a_new = 10&lt;/P&gt;&lt;P&gt;else if a = 2 then a_new = 20&lt;/P&gt;&lt;P&gt;else a_new = 5&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Like this, I have 35 variables that would go through if else &amp;amp; get their value&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now, what am trying to do is, create a Data Set for this "x_new" variable. Once the first row of values is inserted, in the second row, I want to hardcode one value, lets say a_new &amp;amp; then rest 34 variables getting their values from if else condition&lt;BR /&gt;&lt;BR /&gt;I hope am clear with the requirement.&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jan 2023 13:54:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Creating-Dataset-using-Variables-defined-outside-of-DATA/m-p/853249#M41982</guid>
      <dc:creator>rajbhinde</dc:creator>
      <dc:date>2023-01-11T13:54:13Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Dataset using Variables defined outside of DATA</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Creating-Dataset-using-Variables-defined-outside-of-DATA/m-p/853250#M41983</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/438379"&gt;@rajbhinde&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I have a set of variables that get their value based on an if else condition -&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;if a = 1 then a_new = 10&lt;/P&gt;
&lt;P&gt;else if a = 2 then a_new = 20&lt;/P&gt;
&lt;P&gt;else a_new = 5&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Like this, I have 35 variables that would go through if else &amp;amp; get their value&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Now, what am trying to do is, create a Data Set for this "x_new" variable. Once the first row of values is inserted, in the second row, I want to hardcode one value, lets say a_new &amp;amp; then rest 34 variables getting their values from if else condition&lt;BR /&gt;&lt;BR /&gt;I hope am clear with the requirement.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Sorry, no, I don't get it. Showing us what output you want would be a great help.&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jan 2023 14:00:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Creating-Dataset-using-Variables-defined-outside-of-DATA/m-p/853250#M41983</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2023-01-11T14:00:08Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Dataset using Variables defined outside of DATA</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Creating-Dataset-using-Variables-defined-outside-of-DATA/m-p/853251#M41984</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/438379"&gt;@rajbhinde&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I have a set of variables that get their value based on an if else condition -&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;if a = 1 then a_new = 10&lt;/P&gt;
&lt;P&gt;else if a = 2 then a_new = 20&lt;/P&gt;
&lt;P&gt;else a_new = 5&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Like this, I have 35 variables that would go through if else &amp;amp; get their value&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Now, what am trying to do is, create a Data Set for this "x_new" variable. Once the first row of values is inserted, in the second row, I want to hardcode one value, lets say a_new &amp;amp; then rest 34 variables getting their values from if else condition&lt;BR /&gt;&lt;BR /&gt;I hope am clear with the requirement.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;If you want to recode 35 variables then perhaps you need to use ARRAYs?&lt;/P&gt;
&lt;P&gt;Here is example using just three variables.&amp;nbsp; To extend to 35 just change the list of variables in the two array statements.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want;
  set have;
  array old a b c ;
  array new a_new b_new c_new;
  do index=1 to dim(old);
    if old[index] = 1 then new[index] = 10
    else if old[index] = 2 then new[index] = 20
    else new[index] = 5
  end;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 11 Jan 2023 14:07:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Creating-Dataset-using-Variables-defined-outside-of-DATA/m-p/853251#M41984</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2023-01-11T14:07:18Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Dataset using Variables defined outside of DATA</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Creating-Dataset-using-Variables-defined-outside-of-DATA/m-p/853253#M41985</link>
      <description>&lt;P&gt;Let's say, I have 3 variables that get their value through an if-else statement.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For example - a=1,b=2,c=3........these values would vary based upon if-else condition&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;creating a data set for these 3 variables should give an output like this -&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;a&lt;/TD&gt;&lt;TD&gt;b&lt;/TD&gt;&lt;TD&gt;c&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;3&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 want to do is, run a loop where in each loop am hardcoding the value of one variable, and the table should look something like this&amp;nbsp;&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;a&lt;/TD&gt;&lt;TD&gt;b&lt;/TD&gt;&lt;TD&gt;c&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1 ( as it is from if-else condition )&lt;/TD&gt;&lt;TD&gt;2 ( as it is from if-else condition )&lt;/TD&gt;&lt;TD&gt;3 ( as it is from if-else condition )&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;99 ( hardcoded )&lt;/TD&gt;&lt;TD&gt;2 ( as it is from if-else condition )&lt;/TD&gt;&lt;TD&gt;3 ( as it is from if-else condition )&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1&amp;nbsp;( as it is from if-else condition )&lt;/TD&gt;&lt;TD&gt;85 (hardcoded)&lt;/TD&gt;&lt;TD&gt;3&amp;nbsp;( as it is from if-else condition )&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1&amp;nbsp;( as it is from if-else condition )&lt;/TD&gt;&lt;TD&gt;2&amp;nbsp;( as it is from if-else condition )&lt;/TD&gt;&lt;TD&gt;33 (hardcoded)&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now, if you look back at my original post, am trying to achieve something like this -&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;Data Test;&lt;BR /&gt;input a b c;
datalines;
a b c 
99 b c&lt;BR /&gt;a 85 c&lt;BR /&gt;a b 33&lt;BR /&gt;proc print data = test;&lt;BR /&gt;run;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;But datalines is not supporting variable values&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jan 2023 14:12:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Creating-Dataset-using-Variables-defined-outside-of-DATA/m-p/853253#M41985</guid>
      <dc:creator>rajbhinde</dc:creator>
      <dc:date>2023-01-11T14:12:05Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Dataset using Variables defined outside of DATA</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Creating-Dataset-using-Variables-defined-outside-of-DATA/m-p/853254#M41986</link>
      <description>Hi!&lt;BR /&gt;&lt;BR /&gt;Appreciate you taking out time for this. Unfortunately, that's not what am looking for. Can you please check my reply to PaigeMillers comment to get a better understanding? Thanks!</description>
      <pubDate>Wed, 11 Jan 2023 14:15:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Creating-Dataset-using-Variables-defined-outside-of-DATA/m-p/853254#M41986</guid>
      <dc:creator>rajbhinde</dc:creator>
      <dc:date>2023-01-11T14:15:48Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Dataset using Variables defined outside of DATA</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Creating-Dataset-using-Variables-defined-outside-of-DATA/m-p/853266#M41988</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/438379"&gt;@rajbhinde&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think this gets you to what you want. I think you have to read in the original data as character strings and then use the VVALUEX function, as you can't do this entirely with DATALINES&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;Data Test;
input var1 $  var2 $  var3 $;
datalines;
a b c 
99 b c
a 85 c
a b 33
;
data want;
a=1; b=2; c=3;
set test;
if anydigit(var1)^=0 then finalvar1=input(var1,10.);
else finalvar1=vvaluex(var1);
if anydigit(var2)^=0 then finalvar2=input(var2,10.);
else finalvar2=vvaluex(var2);
if anydigit(var3)^=0 then finalvar3=input(var3,10.);
else finalvar3=vvaluex(var3);
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jan 2023 15:06:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Creating-Dataset-using-Variables-defined-outside-of-DATA/m-p/853266#M41988</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2023-01-11T15:06:11Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Dataset using Variables defined outside of DATA</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Creating-Dataset-using-Variables-defined-outside-of-DATA/m-p/853267#M41989</link>
      <description>&lt;P&gt;It is still as clear as mud, but it looks like perhaps you want to some type of code generation.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So you have this METADATA.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data metadata;
  input (var1-var3) (:$40.);
datalines;
a b c 
99 b c
a 85 c
a b 33
;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;And you want to generate this code:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want;
  set have;
  var1=a;
  var2=b;
  var3=c;
  output;
  var1=99;
  var2=b;
  var3=c;
  output;
....
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;So just use a simple data step like this to generate that repetitive code from the metadata.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;filename code temp;
data _null_;
  set metadata;
  file code ;
  put var1= ';' var2= ';' var3= ';output;' ;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;And then use it inside a data step by using %INCLUDE;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
  input a b c ;
cards;
1 2 3
;
data want;
  set have;
%include code / source2;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Log:&lt;/P&gt;
&lt;PRE&gt;584  data want;
585    set have;
586  %include code / source2;
NOTE: %INCLUDE (level 1) file CODE is (system-specific pathname).
587 +var1=a ;var2=b ;var3=c ;output;
588 +var1=99 ;var2=b ;var3=c ;output;
589 +var1=a ;var2=85 ;var3=c ;output;
590 +var1=a ;var2=b ;var3=33 ;output;
NOTE: %INCLUDE (level 1) ending.
591  run;

NOTE: The data set WORK.WANT has 4 observations and 6 variables.
NOTE: DATA statement used (Total process time):
      real time           0.02 seconds
      cpu time            0.03 seconds
&lt;/PRE&gt;
&lt;P&gt;Results:&lt;/P&gt;
&lt;PRE&gt;OBS    a    b    c    var1    var2    var3

 1     1    2    3      1       2       3
 2     1    2    3     99       2       3
 3     1    2    3      1      85       3
 4     1    2    3      1       2      33

&lt;/PRE&gt;</description>
      <pubDate>Wed, 11 Jan 2023 15:07:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Creating-Dataset-using-Variables-defined-outside-of-DATA/m-p/853267#M41989</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2023-01-11T15:07:37Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Dataset using Variables defined outside of DATA</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Creating-Dataset-using-Variables-defined-outside-of-DATA/m-p/853268#M41990</link>
      <description>Hi Tom,&lt;BR /&gt;&lt;BR /&gt;Appreciate your time &amp;amp; help. Since I am relatively new to SAS, I would get a good understanding of what you've suggested &amp;amp; get back to you. Thanks!</description>
      <pubDate>Wed, 11 Jan 2023 15:14:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Creating-Dataset-using-Variables-defined-outside-of-DATA/m-p/853268#M41990</guid>
      <dc:creator>rajbhinde</dc:creator>
      <dc:date>2023-01-11T15:14:48Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Dataset using Variables defined outside of DATA</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Creating-Dataset-using-Variables-defined-outside-of-DATA/m-p/853269#M41991</link>
      <description>Hi Paige,&lt;BR /&gt;&lt;BR /&gt;Appreciate your time &amp;amp; help. Since I am relatively new to SAS, I would try to implement what you've suggested step by step &amp;amp; get back to you. Thanks!</description>
      <pubDate>Wed, 11 Jan 2023 15:15:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Creating-Dataset-using-Variables-defined-outside-of-DATA/m-p/853269#M41991</guid>
      <dc:creator>rajbhinde</dc:creator>
      <dc:date>2023-01-11T15:15:55Z</dc:date>
    </item>
  </channel>
</rss>

