<?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: Macro vars in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Macro-vars/m-p/599637#M173121</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159549"&gt;@Ronein&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hello&lt;/P&gt;
&lt;P&gt;I need to create a data set from external macro varaibles m0,m1,m2,m3,m4,m5,m6&lt;/P&gt;
&lt;P&gt;I have 3 questions please:&lt;/P&gt;
&lt;P&gt;1-Why data set ttbl is not created well and I get null values&lt;/P&gt;
&lt;P&gt;2-I need to&amp;nbsp; calculate a new column called "DateName".&lt;/P&gt;
&lt;P&gt;For each value of YYMM I need to create a value of 01 of month.&lt;/P&gt;
&lt;P&gt;foe example:&lt;/P&gt;
&lt;P&gt;for 1906 I need to get '01JUN2019'd&lt;/P&gt;
&lt;P&gt;for 1905 I need to get '01May2019'd&lt;/P&gt;
&lt;P&gt;for 1904 I need to get '01APR2019'd&lt;/P&gt;
&lt;P&gt;for 1903 I need to get '01MAR2019'd&lt;/P&gt;
&lt;P&gt;for 1902 I need to get '01FEB2019'd&lt;/P&gt;
&lt;P&gt;for 1901 I need to get '01JAN2019'd&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Seems like an ideal situation to re-design the data flow into your SAS data set, for example instead of creating macro variables, put the values such as 1906 directly into a SAS data set where they belong. It's probably no more work putting them directly into a SAS data set than it is to create macro variables. Also possible: use some other type of input storage, such as a CSV file or plain old text file, instead of macro variables.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As far as turning 1906 into '01JUN2019'd, this could be easily done by utilizing informats or date functions, such as MDY().&lt;/P&gt;</description>
    <pubDate>Sun, 27 Oct 2019 13:16:34 GMT</pubDate>
    <dc:creator>PaigeMiller</dc:creator>
    <dc:date>2019-10-27T13:16:34Z</dc:date>
    <item>
      <title>Macro vars</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-vars/m-p/599635#M173119</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;
&lt;P&gt;I need to create a data set from external macro varaibles m0,m1,m2,m3,m4,m5,m6&lt;/P&gt;
&lt;P&gt;I have 3 questions please:&lt;/P&gt;
&lt;P&gt;1-Why data set ttbl is not created well and I get null values&lt;/P&gt;
&lt;P&gt;2-I need to&amp;nbsp; calculate a new column called "DateName".&lt;/P&gt;
&lt;P&gt;For each value of YYMM I need to create a value of 01 of month.&lt;/P&gt;
&lt;P&gt;foe example:&lt;/P&gt;
&lt;P&gt;for 1906 I need to get '01JUN2019'd&lt;/P&gt;
&lt;P&gt;for 1905 I need to get '01May2019'd&lt;/P&gt;
&lt;P&gt;for 1904 I need to get '01APR2019'd&lt;/P&gt;
&lt;P&gt;for 1903 I need to get '01MAR2019'd&lt;/P&gt;
&lt;P&gt;for 1902 I need to get '01FEB2019'd&lt;/P&gt;
&lt;P&gt;for 1901 I need to get '01JAN2019'd&lt;/P&gt;
&lt;P&gt;3-For each value of DateName I need to create a macro varaible.&lt;/P&gt;
&lt;P&gt;for example:&lt;/P&gt;
&lt;P&gt;macro varaible R0 will get value&amp;nbsp; '01JUN2019'd&lt;/P&gt;
&lt;P&gt;macro varaible R1 will get value&amp;nbsp; '01May2019'd&lt;/P&gt;
&lt;P&gt;macro varaible R2 will get value&amp;nbsp; '01APR2019'd&lt;/P&gt;
&lt;P&gt;and so on&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let m0=1906;
%let m1=1905;
%let m2=1904;
%let m3=1903;
%let m4=1902;
%let m5=1901;
%let m6=1812;
%put &amp;amp;m0 &amp;amp;m1 &amp;amp;m2 &amp;amp;m3 &amp;amp;m4 &amp;amp;m5 &amp;amp;m6;

Data ttbl;
Input YYMM;
cards;
&amp;amp;m0
&amp;amp;m1
&amp;amp;m2
&amp;amp;m3
&amp;amp;m4
&amp;amp;m5
&amp;amp;m6
;
run;
/*Why is it not created well???*/

&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 27 Oct 2019 13:01:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-vars/m-p/599635#M173119</guid>
      <dc:creator>Ronein</dc:creator>
      <dc:date>2019-10-27T13:01:29Z</dc:date>
    </item>
    <item>
      <title>Re: Macro vars</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-vars/m-p/599636#M173120</link>
      <description>&lt;P&gt;Here is why&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/kb/43/902.html" target="_blank" rel="noopener"&gt;http://support.sas.com/kb/43/902.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And here is a workaround&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/kb/43/295.html" target="_blank"&gt;http://support.sas.com/kb/43/295.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 27 Oct 2019 13:05:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-vars/m-p/599636#M173120</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2019-10-27T13:05:46Z</dc:date>
    </item>
    <item>
      <title>Re: Macro vars</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-vars/m-p/599637#M173121</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159549"&gt;@Ronein&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hello&lt;/P&gt;
&lt;P&gt;I need to create a data set from external macro varaibles m0,m1,m2,m3,m4,m5,m6&lt;/P&gt;
&lt;P&gt;I have 3 questions please:&lt;/P&gt;
&lt;P&gt;1-Why data set ttbl is not created well and I get null values&lt;/P&gt;
&lt;P&gt;2-I need to&amp;nbsp; calculate a new column called "DateName".&lt;/P&gt;
&lt;P&gt;For each value of YYMM I need to create a value of 01 of month.&lt;/P&gt;
&lt;P&gt;foe example:&lt;/P&gt;
&lt;P&gt;for 1906 I need to get '01JUN2019'd&lt;/P&gt;
&lt;P&gt;for 1905 I need to get '01May2019'd&lt;/P&gt;
&lt;P&gt;for 1904 I need to get '01APR2019'd&lt;/P&gt;
&lt;P&gt;for 1903 I need to get '01MAR2019'd&lt;/P&gt;
&lt;P&gt;for 1902 I need to get '01FEB2019'd&lt;/P&gt;
&lt;P&gt;for 1901 I need to get '01JAN2019'd&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Seems like an ideal situation to re-design the data flow into your SAS data set, for example instead of creating macro variables, put the values such as 1906 directly into a SAS data set where they belong. It's probably no more work putting them directly into a SAS data set than it is to create macro variables. Also possible: use some other type of input storage, such as a CSV file or plain old text file, instead of macro variables.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As far as turning 1906 into '01JUN2019'd, this could be easily done by utilizing informats or date functions, such as MDY().&lt;/P&gt;</description>
      <pubDate>Sun, 27 Oct 2019 13:16:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-vars/m-p/599637#M173121</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2019-10-27T13:16:34Z</dc:date>
    </item>
    <item>
      <title>Re: Macro vars</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-vars/m-p/599638#M173122</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/31304"&gt;@PeterClemmensen&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And here is a workaround&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/kb/43/295.html" target="_blank" rel="noopener"&gt;http://support.sas.com/kb/43/295.html&lt;/A&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;This makes me sad.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;A better work-around would be to design a simpler/better data flow for this situation, which doesn't use macro variables in the first place. This is especially important for new SAS users to learn, coming up with an efficient data flow — don't use macro variables where they aren't necessary.&lt;/P&gt;</description>
      <pubDate>Sun, 27 Oct 2019 13:31:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-vars/m-p/599638#M173122</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2019-10-27T13:31:33Z</dc:date>
    </item>
    <item>
      <title>Re: Macro vars</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-vars/m-p/599639#M173123</link>
      <description>&lt;P&gt;I agree.&lt;/P&gt;</description>
      <pubDate>Sun, 27 Oct 2019 13:31:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-vars/m-p/599639#M173123</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2019-10-27T13:31:25Z</dc:date>
    </item>
    <item>
      <title>Re: Macro vars</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-vars/m-p/599646#M173125</link>
      <description>&lt;P&gt;The question is silly on so many levels.&amp;nbsp; Why do you have macro variables? Why do you want macro variables? Why do have a bunch of macro variables? Why do you have only two digits for the year?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But let's just answer it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Let's assume you have M0 to M6 (and you KNOW that they exist and that always contain valid YYMM strings). Just use a data step to loop from 0 to 6 and pull in the macro variable's value and convert it to a date and write it back into new macro variables.&lt;/P&gt;
&lt;P&gt;Do you want the VALUE of the dates?&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _null_;
  do i=0 to 6;
    date=input(symget(cats('M',i))||'01',yymmdd6.);
    call symputx(cats('R',i),date);
  end;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Or the string with the quotes and D suffix like in your example:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;    call symputx(cats('R',i),cats("'",put(date,date9.),"'d"));&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 27 Oct 2019 15:08:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-vars/m-p/599646#M173125</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-10-27T15:08:23Z</dc:date>
    </item>
    <item>
      <title>Re: Macro vars</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-vars/m-p/599654#M173130</link>
      <description>&lt;P&gt;Hello All,&lt;/P&gt;&lt;P&gt;I am trying also to create the data set but I get null values.&lt;/P&gt;&lt;P&gt;I have tried to read the document but I cannot understand what should I do.&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let m0=1906;
%let m1=1905;
%let m2=1904;
%let m3=1903;
%let m4=1902;
%let m5=1901;
%let m6=1812;
%put &amp;amp;m0 &amp;amp;m1 &amp;amp;m2 &amp;amp;m3 &amp;amp;m4 &amp;amp;m5 &amp;amp;m6;

Data ttbl;
Input YYMM;
cards;
&amp;amp;m0
&amp;amp;m1
&amp;amp;m2
&amp;amp;m3
&amp;amp;m4
&amp;amp;m5
&amp;amp;m6
;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 27 Oct 2019 17:10:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-vars/m-p/599654#M173130</guid>
      <dc:creator>DaveStar</dc:creator>
      <dc:date>2019-10-27T17:10:24Z</dc:date>
    </item>
    <item>
      <title>Re: Macro vars</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-vars/m-p/599665#M173140</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/292395"&gt;@DaveStar&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hello All,&lt;/P&gt;
&lt;P&gt;I am trying also to create the data set but I get null values.&lt;/P&gt;
&lt;P&gt;I have tried to read the document but I cannot understand what should I do.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let m0=1906;
%let m1=1905;
%let m2=1904;
%let m3=1903;
%let m4=1902;
%let m5=1901;
%let m6=1812;
%put &amp;amp;m0 &amp;amp;m1 &amp;amp;m2 &amp;amp;m3 &amp;amp;m4 &amp;amp;m5 &amp;amp;m6;

Data ttbl;
Input YYMM;
cards;
&amp;amp;m0
&amp;amp;m1
&amp;amp;m2
&amp;amp;m3
&amp;amp;m4
&amp;amp;m5
&amp;amp;m6
;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/292395"&gt;@DaveStar&lt;/a&gt; this was explained earlier in this thread by &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/31304"&gt;@PeterClemmensen&lt;/a&gt;&amp;nbsp;.&lt;/P&gt;</description>
      <pubDate>Sun, 27 Oct 2019 17:58:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-vars/m-p/599665#M173140</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2019-10-27T17:58:52Z</dc:date>
    </item>
    <item>
      <title>Re: Macro vars</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-vars/m-p/599667#M173142</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159549"&gt;@Ronein&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/292395"&gt;@DaveStar&lt;/a&gt;&amp;nbsp;you can't use macro variables as input data under CARDS (or DATALINES);&lt;/P&gt;
&lt;P&gt;Sas reads it as is, '&amp;amp;m0' instead as '1906'.&lt;/P&gt;
&lt;P&gt;The macro variables are to be used in the sas code only. See&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159"&gt;@Tom&lt;/a&gt;'s post or next simple code.&amp;nbsp; Try it.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let m0 = 1906;
%let m1 = 1905;
...

data test;
  m0 = &amp;amp;m0.01;
  date0 = input(m0, yymmdd8.); ;
  call symput('dt0', put(date0, date9.);
  output;

 m1 = &amp;amp;m1.01;
  date1 = input(m1, yymmdd8.); 
  call symput('dt1', put(date1, date9.);
  output;
run;

%put &amp;amp;dt0 &amp;amp;ddt1;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 27 Oct 2019 17:59:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-vars/m-p/599667#M173142</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2019-10-27T17:59:28Z</dc:date>
    </item>
    <item>
      <title>Re: Macro vars</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-vars/m-p/599668#M173143</link>
      <description>&lt;P&gt;Homework problem or multiple accounts?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://communities.sas.com/t5/SAS-Programming/Run-multiple-Macros-with-automatic-created-dates-parameters/m-p/599661" target="_blank"&gt;https://communities.sas.com/t5/SAS-Programming/Run-multiple-Macros-with-automatic-created-dates-parameters/m-p/599661&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159549"&gt;@Ronein&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hello&lt;/P&gt;
&lt;P&gt;I need to create a data set from external macro varaibles m0,m1,m2,m3,m4,m5,m6&lt;/P&gt;
&lt;P&gt;I have 3 questions please:&lt;/P&gt;
&lt;P&gt;1-Why data set ttbl is not created well and I get null values&lt;/P&gt;
&lt;P&gt;2-I need to&amp;nbsp; calculate a new column called "DateName".&lt;/P&gt;
&lt;P&gt;For each value of YYMM I need to create a value of 01 of month.&lt;/P&gt;
&lt;P&gt;foe example:&lt;/P&gt;
&lt;P&gt;for 1906 I need to get '01JUN2019'd&lt;/P&gt;
&lt;P&gt;for 1905 I need to get '01May2019'd&lt;/P&gt;
&lt;P&gt;for 1904 I need to get '01APR2019'd&lt;/P&gt;
&lt;P&gt;for 1903 I need to get '01MAR2019'd&lt;/P&gt;
&lt;P&gt;for 1902 I need to get '01FEB2019'd&lt;/P&gt;
&lt;P&gt;for 1901 I need to get '01JAN2019'd&lt;/P&gt;
&lt;P&gt;3-For each value of DateName I need to create a macro varaible.&lt;/P&gt;
&lt;P&gt;for example:&lt;/P&gt;
&lt;P&gt;macro varaible R0 will get value&amp;nbsp; '01JUN2019'd&lt;/P&gt;
&lt;P&gt;macro varaible R1 will get value&amp;nbsp; '01May2019'd&lt;/P&gt;
&lt;P&gt;macro varaible R2 will get value&amp;nbsp; '01APR2019'd&lt;/P&gt;
&lt;P&gt;and so on&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let m0=1906;
%let m1=1905;
%let m2=1904;
%let m3=1903;
%let m4=1902;
%let m5=1901;
%let m6=1812;
%put &amp;amp;m0 &amp;amp;m1 &amp;amp;m2 &amp;amp;m3 &amp;amp;m4 &amp;amp;m5 &amp;amp;m6;

Data ttbl;
Input YYMM;
cards;
&amp;amp;m0
&amp;amp;m1
&amp;amp;m2
&amp;amp;m3
&amp;amp;m4
&amp;amp;m5
&amp;amp;m6
;
run;
/*Why is it not created well???*/

&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 27 Oct 2019 18:00:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-vars/m-p/599668#M173143</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-10-27T18:00:08Z</dc:date>
    </item>
    <item>
      <title>Re: Macro vars</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-vars/m-p/599669#M173144</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159549"&gt;@Ronein&lt;/a&gt; and&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/292395"&gt;@DaveStar&lt;/a&gt; a good understanding about SAS dates may assist you in the future.&lt;/P&gt;
&lt;P&gt;Here is a link may assist both of you.&lt;/P&gt;
&lt;P&gt;&lt;FONT style="background-color: #ffffff;"&gt;&lt;A href="http://v8doc.sas.com/sashtml/lrcon/zenid-63.htm" target="_blank"&gt;http://v8doc.sas.com/sashtml/lrcon/zenid-63.htm&lt;/A&gt;&lt;/FONT&gt;&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>Sun, 27 Oct 2019 18:00:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-vars/m-p/599669#M173144</guid>
      <dc:creator>VDD</dc:creator>
      <dc:date>2019-10-27T18:00:38Z</dc:date>
    </item>
    <item>
      <title>Re: Macro vars</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-vars/m-p/599670#M173145</link>
      <description>&lt;P&gt;I will try to do it.&lt;/P&gt;&lt;P&gt;Is it forbidden to ask questions regarding homework...?Lol....&lt;/P&gt;&lt;P&gt;No worries...it is not Homework.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 27 Oct 2019 18:02:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-vars/m-p/599670#M173145</guid>
      <dc:creator>DaveStar</dc:creator>
      <dc:date>2019-10-27T18:02:50Z</dc:date>
    </item>
    <item>
      <title>Re: Macro vars</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-vars/m-p/599671#M173146</link>
      <description>&lt;P&gt;No its not forbidden to ask questions about homework, but normally we expect people to try the homework themselves and show us what they tried.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However, when two different people have the exact same data and requirements, we get suspicious, this sure seems like homework. If it is homework, it is a terrible assignment and if an instructor said to do this with macro variables as shown, the instructor ought not to be an instructor.&lt;/P&gt;</description>
      <pubDate>Sun, 27 Oct 2019 18:11:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-vars/m-p/599671#M173146</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2019-10-27T18:11:08Z</dc:date>
    </item>
    <item>
      <title>Re: Macro vars</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-vars/m-p/599673#M173148</link>
      <description>&lt;P&gt;So, as I can see the best solution is :&lt;/P&gt;&lt;P&gt;&lt;SPAN class="token procnames" style="box-sizing: inherit; color: navy; font-family: Consolas,Monaco,&amp;amp;quot; andale mono&amp;amp;quot;,&amp;amp;quot;ubuntu mono&amp;amp;quot;,monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: bold; letter-spacing: normal; line-height: 1.2; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px;"&gt;data&lt;/SPAN&gt;&lt;SPAN style="display: inline !important; float: none; background-color: #ffffff; color: black; direction: ltr; font-family: Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace; font-size: 1em; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 1.5; -ms-hyphens: none; orphans: 2; overflow-wrap: normal; text-align: left; text-decoration: none; text-indent: 0px; text-shadow: 0px 1px white; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-break: normal; word-spacing: normal;"&gt; w&lt;/SPAN&gt;&lt;SPAN class="token punctuation" style="box-sizing: inherit; color: #999999; font-family: Consolas,Monaco,&amp;amp;quot; andale mono&amp;amp;quot;,&amp;amp;quot;ubuntu mono&amp;amp;quot;,monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 1.2; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px;"&gt;;&lt;/SPAN&gt;&lt;SPAN style="display: inline !important; float: none; background-color: #ffffff; color: black; direction: ltr; font-family: Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace; font-size: 1em; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 1.5; -ms-hyphens: none; orphans: 2; overflow-wrap: normal; text-align: left; text-decoration: none; text-indent: 0px; text-shadow: 0px 1px white; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-break: normal; word-spacing: normal;"&gt;&lt;BR /&gt;a&lt;/SPAN&gt;&lt;SPAN class="token operator" style="box-sizing: inherit; color: #a67f59; font-family: Consolas,Monaco,&amp;amp;quot; andale mono&amp;amp;quot;,&amp;amp;quot;ubuntu mono&amp;amp;quot;,monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 1.2; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px;"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token operator" style="box-sizing: inherit; color: #a67f59; font-family: Consolas,Monaco,&amp;amp;quot; andale mono&amp;amp;quot;,&amp;amp;quot;ubuntu mono&amp;amp;quot;,monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 1.2; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px;"&gt;&amp;amp;&lt;/SPAN&gt;&lt;SPAN style="display: inline !important; float: none; background-color: #ffffff; color: black; direction: ltr; font-family: Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace; font-size: 1em; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 1.5; -ms-hyphens: none; orphans: 2; overflow-wrap: normal; text-align: left; text-decoration: none; text-indent: 0px; text-shadow: 0px 1px white; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-break: normal; word-spacing: normal;"&gt;m0&lt;/SPAN&gt;&lt;SPAN class="token punctuation" style="box-sizing: inherit; color: #999999; font-family: Consolas,Monaco,&amp;amp;quot; andale mono&amp;amp;quot;,&amp;amp;quot;ubuntu mono&amp;amp;quot;,monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 1.2; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px;"&gt;;&lt;/SPAN&gt;&lt;SPAN style="display: inline !important; float: none; background-color: #ffffff; color: black; direction: ltr; font-family: Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace; font-size: 1em; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 1.5; -ms-hyphens: none; orphans: 2; overflow-wrap: normal; text-align: left; text-decoration: none; text-indent: 0px; text-shadow: 0px 1px white; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-break: normal; word-spacing: normal;"&gt;&lt;BR /&gt;b&lt;/SPAN&gt;&lt;SPAN class="token operator" style="box-sizing: inherit; color: #a67f59; font-family: Consolas,Monaco,&amp;amp;quot; andale mono&amp;amp;quot;,&amp;amp;quot;ubuntu mono&amp;amp;quot;,monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 1.2; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px;"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token operator" style="box-sizing: inherit; color: #a67f59; font-family: Consolas,Monaco,&amp;amp;quot; andale mono&amp;amp;quot;,&amp;amp;quot;ubuntu mono&amp;amp;quot;,monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 1.2; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px;"&gt;&amp;amp;&lt;/SPAN&gt;&lt;SPAN style="display: inline !important; float: none; background-color: #ffffff; color: black; direction: ltr; font-family: Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace; font-size: 1em; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 1.5; -ms-hyphens: none; orphans: 2; overflow-wrap: normal; text-align: left; text-decoration: none; text-indent: 0px; text-shadow: 0px 1px white; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-break: normal; word-spacing: normal;"&gt;m1&lt;/SPAN&gt;&lt;SPAN class="token punctuation" style="box-sizing: inherit; color: #999999; font-family: Consolas,Monaco,&amp;amp;quot; andale mono&amp;amp;quot;,&amp;amp;quot;ubuntu mono&amp;amp;quot;,monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 1.2; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px;"&gt;;&lt;/SPAN&gt;&lt;SPAN style="display: inline !important; float: none; background-color: #ffffff; color: black; direction: ltr; font-family: Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace; font-size: 1em; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 1.5; -ms-hyphens: none; orphans: 2; overflow-wrap: normal; text-align: left; text-decoration: none; text-indent: 0px; text-shadow: 0px 1px white; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-break: normal; word-spacing: normal;"&gt;&lt;BR /&gt;c&lt;/SPAN&gt;&lt;SPAN class="token operator" style="box-sizing: inherit; color: #a67f59; font-family: Consolas,Monaco,&amp;amp;quot; andale mono&amp;amp;quot;,&amp;amp;quot;ubuntu mono&amp;amp;quot;,monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 1.2; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px;"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token operator" style="box-sizing: inherit; color: #a67f59; font-family: Consolas,Monaco,&amp;amp;quot; andale mono&amp;amp;quot;,&amp;amp;quot;ubuntu mono&amp;amp;quot;,monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 1.2; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px;"&gt;&amp;amp;&lt;/SPAN&gt;&lt;SPAN style="display: inline !important; float: none; background-color: #ffffff; color: black; direction: ltr; font-family: Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace; font-size: 1em; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 1.5; -ms-hyphens: none; orphans: 2; overflow-wrap: normal; text-align: left; text-decoration: none; text-indent: 0px; text-shadow: 0px 1px white; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-break: normal; word-spacing: normal;"&gt;m2&lt;/SPAN&gt;&lt;SPAN class="token punctuation" style="box-sizing: inherit; color: #999999; font-family: Consolas,Monaco,&amp;amp;quot; andale mono&amp;amp;quot;,&amp;amp;quot;ubuntu mono&amp;amp;quot;,monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 1.2; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px;"&gt;;&lt;/SPAN&gt;&lt;SPAN style="display: inline !important; float: none; background-color: #ffffff; color: black; direction: ltr; font-family: Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace; font-size: 1em; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 1.5; -ms-hyphens: none; orphans: 2; overflow-wrap: normal; text-align: left; text-decoration: none; text-indent: 0px; text-shadow: 0px 1px white; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-break: normal; word-spacing: normal;"&gt;&lt;BR /&gt;d&lt;/SPAN&gt;&lt;SPAN class="token operator" style="box-sizing: inherit; color: #a67f59; font-family: Consolas,Monaco,&amp;amp;quot; andale mono&amp;amp;quot;,&amp;amp;quot;ubuntu mono&amp;amp;quot;,monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 1.2; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px;"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token operator" style="box-sizing: inherit; color: #a67f59; font-family: Consolas,Monaco,&amp;amp;quot; andale mono&amp;amp;quot;,&amp;amp;quot;ubuntu mono&amp;amp;quot;,monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 1.2; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px;"&gt;&amp;amp;&lt;/SPAN&gt;&lt;SPAN style="display: inline !important; float: none; background-color: #ffffff; color: black; direction: ltr; font-family: Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace; font-size: 1em; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 1.5; -ms-hyphens: none; orphans: 2; overflow-wrap: normal; text-align: left; text-decoration: none; text-indent: 0px; text-shadow: 0px 1px white; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-break: normal; word-spacing: normal;"&gt;m3&lt;/SPAN&gt;&lt;SPAN class="token punctuation" style="box-sizing: inherit; color: #999999; font-family: Consolas,Monaco,&amp;amp;quot; andale mono&amp;amp;quot;,&amp;amp;quot;ubuntu mono&amp;amp;quot;,monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 1.2; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px;"&gt;;&lt;/SPAN&gt;&lt;SPAN style="display: inline !important; float: none; background-color: #ffffff; color: black; direction: ltr; font-family: Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace; font-size: 1em; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 1.5; -ms-hyphens: none; orphans: 2; overflow-wrap: normal; text-align: left; text-decoration: none; text-indent: 0px; text-shadow: 0px 1px white; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-break: normal; word-spacing: normal;"&gt;&lt;BR /&gt;e&lt;/SPAN&gt;&lt;SPAN class="token operator" style="box-sizing: inherit; color: #a67f59; font-family: Consolas,Monaco,&amp;amp;quot; andale mono&amp;amp;quot;,&amp;amp;quot;ubuntu mono&amp;amp;quot;,monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 1.2; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px;"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token operator" style="box-sizing: inherit; color: #a67f59; font-family: Consolas,Monaco,&amp;amp;quot; andale mono&amp;amp;quot;,&amp;amp;quot;ubuntu mono&amp;amp;quot;,monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 1.2; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px;"&gt;&amp;amp;&lt;/SPAN&gt;&lt;SPAN style="display: inline !important; float: none; background-color: #ffffff; color: black; direction: ltr; font-family: Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace; font-size: 1em; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 1.5; -ms-hyphens: none; orphans: 2; overflow-wrap: normal; text-align: left; text-decoration: none; text-indent: 0px; text-shadow: 0px 1px white; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-break: normal; word-spacing: normal;"&gt;m4&lt;/SPAN&gt;&lt;SPAN class="token punctuation" style="box-sizing: inherit; color: #999999; font-family: Consolas,Monaco,&amp;amp;quot; andale mono&amp;amp;quot;,&amp;amp;quot;ubuntu mono&amp;amp;quot;,monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 1.2; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="display: inline !important; float: none; background-color: #ffffff; color: black; direction: ltr; font-family: Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace; font-size: 1em; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 1.5; -ms-hyphens: none; orphans: 2; overflow-wrap: normal; text-align: left; text-decoration: none; text-indent: 0px; text-shadow: 0px 1px white; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-break: normal; word-spacing: normal;"&gt;f=&amp;amp;m5;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN class="token procnames" style="box-sizing: inherit; color: navy; font-family: Consolas,Monaco,&amp;amp;quot; andale mono&amp;amp;quot;,&amp;amp;quot;ubuntu mono&amp;amp;quot;,monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: bold; letter-spacing: normal; line-height: 1.2; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px;"&gt;run&lt;/SPAN&gt;&lt;SPAN class="token punctuation" style="box-sizing: inherit; color: #999999; font-family: Consolas,Monaco,&amp;amp;quot; andale mono&amp;amp;quot;,&amp;amp;quot;ubuntu mono&amp;amp;quot;,monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 1.2; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="token punctuation" style="box-sizing: inherit; color: #999999; font-family: Consolas,Monaco,&amp;amp;quot; andale mono&amp;amp;quot;,&amp;amp;quot;ubuntu mono&amp;amp;quot;,monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 1.2; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px;"&gt;and then to use proc transpose to define a data set with one column.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="token punctuation" style="box-sizing: inherit; color: #999999; font-family: Consolas,Monaco,&amp;amp;quot; andale mono&amp;amp;quot;,&amp;amp;quot;ubuntu mono&amp;amp;quot;,monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 1.2; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px;"&gt;True?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 27 Oct 2019 18:14:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-vars/m-p/599673#M173148</guid>
      <dc:creator>DaveStar</dc:creator>
      <dc:date>2019-10-27T18:14:51Z</dc:date>
    </item>
    <item>
      <title>Re: Macro vars</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-vars/m-p/599674#M173149</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/292395"&gt;@DaveStar&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;So, as I can see the best solution is :&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="token procnames" style="box-sizing: inherit; color: navy; font-family: Consolas,Monaco,&amp;amp;quot; andale mono&amp;amp;quot;,&amp;amp;quot;ubuntu mono&amp;amp;quot;,monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: bold; letter-spacing: normal; line-height: 1.2; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px;"&gt;data&lt;/SPAN&gt;&lt;SPAN style="display: inline !important; float: none; background-color: #ffffff; color: black; direction: ltr; font-family: Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace; font-size: 1em; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 1.5; -ms-hyphens: none; orphans: 2; overflow-wrap: normal; text-align: left; text-decoration: none; text-indent: 0px; text-shadow: 0px 1px white; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-break: normal; word-spacing: normal;"&gt; w&lt;/SPAN&gt;&lt;SPAN class="token punctuation" style="box-sizing: inherit; color: #999999; font-family: Consolas,Monaco,&amp;amp;quot; andale mono&amp;amp;quot;,&amp;amp;quot;ubuntu mono&amp;amp;quot;,monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 1.2; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px;"&gt;;&lt;/SPAN&gt;&lt;SPAN style="display: inline !important; float: none; background-color: #ffffff; color: black; direction: ltr; font-family: Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace; font-size: 1em; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 1.5; -ms-hyphens: none; orphans: 2; overflow-wrap: normal; text-align: left; text-decoration: none; text-indent: 0px; text-shadow: 0px 1px white; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-break: normal; word-spacing: normal;"&gt;&lt;BR /&gt;a&lt;/SPAN&gt;&lt;SPAN class="token operator" style="box-sizing: inherit; color: #a67f59; font-family: Consolas,Monaco,&amp;amp;quot; andale mono&amp;amp;quot;,&amp;amp;quot;ubuntu mono&amp;amp;quot;,monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 1.2; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px;"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token operator" style="box-sizing: inherit; color: #a67f59; font-family: Consolas,Monaco,&amp;amp;quot; andale mono&amp;amp;quot;,&amp;amp;quot;ubuntu mono&amp;amp;quot;,monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 1.2; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px;"&gt;&amp;amp;&lt;/SPAN&gt;&lt;SPAN style="display: inline !important; float: none; background-color: #ffffff; color: black; direction: ltr; font-family: Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace; font-size: 1em; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 1.5; -ms-hyphens: none; orphans: 2; overflow-wrap: normal; text-align: left; text-decoration: none; text-indent: 0px; text-shadow: 0px 1px white; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-break: normal; word-spacing: normal;"&gt;m0&lt;/SPAN&gt;&lt;SPAN class="token punctuation" style="box-sizing: inherit; color: #999999; font-family: Consolas,Monaco,&amp;amp;quot; andale mono&amp;amp;quot;,&amp;amp;quot;ubuntu mono&amp;amp;quot;,monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 1.2; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px;"&gt;;&lt;/SPAN&gt;&lt;SPAN style="display: inline !important; float: none; background-color: #ffffff; color: black; direction: ltr; font-family: Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace; font-size: 1em; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 1.5; -ms-hyphens: none; orphans: 2; overflow-wrap: normal; text-align: left; text-decoration: none; text-indent: 0px; text-shadow: 0px 1px white; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-break: normal; word-spacing: normal;"&gt;&lt;BR /&gt;b&lt;/SPAN&gt;&lt;SPAN class="token operator" style="box-sizing: inherit; color: #a67f59; font-family: Consolas,Monaco,&amp;amp;quot; andale mono&amp;amp;quot;,&amp;amp;quot;ubuntu mono&amp;amp;quot;,monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 1.2; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px;"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token operator" style="box-sizing: inherit; color: #a67f59; font-family: Consolas,Monaco,&amp;amp;quot; andale mono&amp;amp;quot;,&amp;amp;quot;ubuntu mono&amp;amp;quot;,monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 1.2; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px;"&gt;&amp;amp;&lt;/SPAN&gt;&lt;SPAN style="display: inline !important; float: none; background-color: #ffffff; color: black; direction: ltr; font-family: Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace; font-size: 1em; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 1.5; -ms-hyphens: none; orphans: 2; overflow-wrap: normal; text-align: left; text-decoration: none; text-indent: 0px; text-shadow: 0px 1px white; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-break: normal; word-spacing: normal;"&gt;m1&lt;/SPAN&gt;&lt;SPAN class="token punctuation" style="box-sizing: inherit; color: #999999; font-family: Consolas,Monaco,&amp;amp;quot; andale mono&amp;amp;quot;,&amp;amp;quot;ubuntu mono&amp;amp;quot;,monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 1.2; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px;"&gt;;&lt;/SPAN&gt;&lt;SPAN style="display: inline !important; float: none; background-color: #ffffff; color: black; direction: ltr; font-family: Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace; font-size: 1em; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 1.5; -ms-hyphens: none; orphans: 2; overflow-wrap: normal; text-align: left; text-decoration: none; text-indent: 0px; text-shadow: 0px 1px white; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-break: normal; word-spacing: normal;"&gt;&lt;BR /&gt;c&lt;/SPAN&gt;&lt;SPAN class="token operator" style="box-sizing: inherit; color: #a67f59; font-family: Consolas,Monaco,&amp;amp;quot; andale mono&amp;amp;quot;,&amp;amp;quot;ubuntu mono&amp;amp;quot;,monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 1.2; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px;"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token operator" style="box-sizing: inherit; color: #a67f59; font-family: Consolas,Monaco,&amp;amp;quot; andale mono&amp;amp;quot;,&amp;amp;quot;ubuntu mono&amp;amp;quot;,monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 1.2; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px;"&gt;&amp;amp;&lt;/SPAN&gt;&lt;SPAN style="display: inline !important; float: none; background-color: #ffffff; color: black; direction: ltr; font-family: Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace; font-size: 1em; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 1.5; -ms-hyphens: none; orphans: 2; overflow-wrap: normal; text-align: left; text-decoration: none; text-indent: 0px; text-shadow: 0px 1px white; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-break: normal; word-spacing: normal;"&gt;m2&lt;/SPAN&gt;&lt;SPAN class="token punctuation" style="box-sizing: inherit; color: #999999; font-family: Consolas,Monaco,&amp;amp;quot; andale mono&amp;amp;quot;,&amp;amp;quot;ubuntu mono&amp;amp;quot;,monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 1.2; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px;"&gt;;&lt;/SPAN&gt;&lt;SPAN style="display: inline !important; float: none; background-color: #ffffff; color: black; direction: ltr; font-family: Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace; font-size: 1em; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 1.5; -ms-hyphens: none; orphans: 2; overflow-wrap: normal; text-align: left; text-decoration: none; text-indent: 0px; text-shadow: 0px 1px white; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-break: normal; word-spacing: normal;"&gt;&lt;BR /&gt;d&lt;/SPAN&gt;&lt;SPAN class="token operator" style="box-sizing: inherit; color: #a67f59; font-family: Consolas,Monaco,&amp;amp;quot; andale mono&amp;amp;quot;,&amp;amp;quot;ubuntu mono&amp;amp;quot;,monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 1.2; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px;"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token operator" style="box-sizing: inherit; color: #a67f59; font-family: Consolas,Monaco,&amp;amp;quot; andale mono&amp;amp;quot;,&amp;amp;quot;ubuntu mono&amp;amp;quot;,monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 1.2; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px;"&gt;&amp;amp;&lt;/SPAN&gt;&lt;SPAN style="display: inline !important; float: none; background-color: #ffffff; color: black; direction: ltr; font-family: Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace; font-size: 1em; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 1.5; -ms-hyphens: none; orphans: 2; overflow-wrap: normal; text-align: left; text-decoration: none; text-indent: 0px; text-shadow: 0px 1px white; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-break: normal; word-spacing: normal;"&gt;m3&lt;/SPAN&gt;&lt;SPAN class="token punctuation" style="box-sizing: inherit; color: #999999; font-family: Consolas,Monaco,&amp;amp;quot; andale mono&amp;amp;quot;,&amp;amp;quot;ubuntu mono&amp;amp;quot;,monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 1.2; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px;"&gt;;&lt;/SPAN&gt;&lt;SPAN style="display: inline !important; float: none; background-color: #ffffff; color: black; direction: ltr; font-family: Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace; font-size: 1em; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 1.5; -ms-hyphens: none; orphans: 2; overflow-wrap: normal; text-align: left; text-decoration: none; text-indent: 0px; text-shadow: 0px 1px white; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-break: normal; word-spacing: normal;"&gt;&lt;BR /&gt;e&lt;/SPAN&gt;&lt;SPAN class="token operator" style="box-sizing: inherit; color: #a67f59; font-family: Consolas,Monaco,&amp;amp;quot; andale mono&amp;amp;quot;,&amp;amp;quot;ubuntu mono&amp;amp;quot;,monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 1.2; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px;"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token operator" style="box-sizing: inherit; color: #a67f59; font-family: Consolas,Monaco,&amp;amp;quot; andale mono&amp;amp;quot;,&amp;amp;quot;ubuntu mono&amp;amp;quot;,monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 1.2; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px;"&gt;&amp;amp;&lt;/SPAN&gt;&lt;SPAN style="display: inline !important; float: none; background-color: #ffffff; color: black; direction: ltr; font-family: Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace; font-size: 1em; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 1.5; -ms-hyphens: none; orphans: 2; overflow-wrap: normal; text-align: left; text-decoration: none; text-indent: 0px; text-shadow: 0px 1px white; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-break: normal; word-spacing: normal;"&gt;m4&lt;/SPAN&gt;&lt;SPAN class="token punctuation" style="box-sizing: inherit; color: #999999; font-family: Consolas,Monaco,&amp;amp;quot; andale mono&amp;amp;quot;,&amp;amp;quot;ubuntu mono&amp;amp;quot;,monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 1.2; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="display: inline !important; float: none; background-color: #ffffff; color: black; direction: ltr; font-family: Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace; font-size: 1em; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 1.5; -ms-hyphens: none; orphans: 2; overflow-wrap: normal; text-align: left; text-decoration: none; text-indent: 0px; text-shadow: 0px 1px white; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-break: normal; word-spacing: normal;"&gt;f=&amp;amp;m5;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN class="token procnames" style="box-sizing: inherit; color: navy; font-family: Consolas,Monaco,&amp;amp;quot; andale mono&amp;amp;quot;,&amp;amp;quot;ubuntu mono&amp;amp;quot;,monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: bold; letter-spacing: normal; line-height: 1.2; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px;"&gt;run&lt;/SPAN&gt;&lt;SPAN class="token punctuation" style="box-sizing: inherit; color: #999999; font-family: Consolas,Monaco,&amp;amp;quot; andale mono&amp;amp;quot;,&amp;amp;quot;ubuntu mono&amp;amp;quot;,monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 1.2; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="token punctuation" style="box-sizing: inherit; color: #999999; font-family: Consolas,Monaco,&amp;amp;quot; andale mono&amp;amp;quot;,&amp;amp;quot;ubuntu mono&amp;amp;quot;,monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 1.2; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px;"&gt;and then to use proc transpose to define a data set with one column.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="token punctuation" style="box-sizing: inherit; color: #999999; font-family: Consolas,Monaco,&amp;amp;quot; andale mono&amp;amp;quot;,&amp;amp;quot;ubuntu mono&amp;amp;quot;,monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 1.2; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px;"&gt;True?&lt;/SPAN&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;There is no need to use macro variables here. There is no need to PROC TRANSPOSE.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Why are you insisting on using macro variables in a data step this way?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Just enter the data into the data step (after the CARDS statement), with no macro variables.&lt;/P&gt;</description>
      <pubDate>Sun, 27 Oct 2019 18:20:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-vars/m-p/599674#M173149</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2019-10-27T18:20:44Z</dc:date>
    </item>
    <item>
      <title>Re: Macro vars</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-vars/m-p/599675#M173150</link>
      <description>&lt;P&gt;I think that you don't understand the issue.&lt;/P&gt;&lt;P&gt;I know how to enter values directly into data step.&lt;/P&gt;&lt;P&gt;In this case the macro parameters are values that I get from "external code" of my friends at work.&lt;/P&gt;&lt;P&gt;So....I am using these values to create a data set.&lt;/P&gt;&lt;P&gt;Instead of writing it manually every day (Which can cause errors due to typing errors) I want to know how to create a data set from these values&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Dave&lt;/P&gt;</description>
      <pubDate>Sun, 27 Oct 2019 18:22:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-vars/m-p/599675#M173150</guid>
      <dc:creator>DaveStar</dc:creator>
      <dc:date>2019-10-27T18:22:33Z</dc:date>
    </item>
    <item>
      <title>Re: Macro vars</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-vars/m-p/599677#M173152</link>
      <description>&lt;P&gt;Of course, I agree for every word.&lt;/P&gt;&lt;P&gt;Before asking a question I am trying to solve it by myself.&lt;/P&gt;&lt;P&gt;Moreover, I am trying to learn from more experienced people.&lt;/P&gt;&lt;P&gt;Thank you for your advice anyway.&lt;/P&gt;&lt;P&gt;And....take life more easy. It is still not so bad &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 27 Oct 2019 18:24:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-vars/m-p/599677#M173152</guid>
      <dc:creator>DaveStar</dc:creator>
      <dc:date>2019-10-27T18:24:21Z</dc:date>
    </item>
    <item>
      <title>Re: Macro vars</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-vars/m-p/599678#M173153</link>
      <description>&lt;P&gt;Use a SAS data set to transfer data. Or, use a text or CSV file to transfer data.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 27 Oct 2019 18:27:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-vars/m-p/599678#M173153</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2019-10-27T18:27:57Z</dc:date>
    </item>
    <item>
      <title>Re: Macro vars</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-vars/m-p/599679#M173154</link>
      <description>&lt;P&gt;Your answer is similar to following question:&lt;/P&gt;&lt;P&gt;Question:What is the best diet?&lt;/P&gt;&lt;P&gt;answer: Not eating&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 27 Oct 2019 18:25:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-vars/m-p/599679#M173154</guid>
      <dc:creator>DaveStar</dc:creator>
      <dc:date>2019-10-27T18:25:47Z</dc:date>
    </item>
    <item>
      <title>Re: Macro vars</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-vars/m-p/599681#M173156</link>
      <description>&lt;P&gt;this looks like the macro variable I setup at work about 19 years ago because of the length of 4 and back then variables could only be 8 char in length.&amp;nbsp; Smiles %)&amp;nbsp; I would strongly suggest&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/292395"&gt;@DaveStar&lt;/a&gt; to talking to your friends at work on how to handle your teams requirements....&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 27 Oct 2019 19:00:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-vars/m-p/599681#M173156</guid>
      <dc:creator>VDD</dc:creator>
      <dc:date>2019-10-27T19:00:26Z</dc:date>
    </item>
  </channel>
</rss>

