<?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: problem with the procedure in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/problem-with-the-procedure/m-p/603066#M174699</link>
    <description>&lt;P&gt;You are TRANSPOSING your data.&amp;nbsp; From TALL to WIDE and you now what to transpose it from WIDE to TALL.&lt;/P&gt;
&lt;P&gt;You can use an ARRAY to help.&lt;/P&gt;
&lt;P&gt;From TALL to WIDE.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data wide ;
  do i=1 to 14 ;
    set tall ;
    array var1_&amp;nbsp;var1_1-var1_7 var2_1-var2_7&amp;nbsp;;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;var1_[i]&amp;nbsp;=&amp;nbsp;var1;
&amp;nbsp;&amp;nbsp;end;
  drop i;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;From WIDE to TALL.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data tall;
  set wide;
  array var1_&amp;nbsp;var1_1-var1_7 var2_1-var2_7;
  do i=1 to dim(var1_);
    var1 = var1_[i];
    output;
&amp;nbsp;&amp;nbsp;end;
  drop i var1_1-var1_7 var2_1-var2_7 ;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sun, 10 Nov 2019 16:55:02 GMT</pubDate>
    <dc:creator>Tom</dc:creator>
    <dc:date>2019-11-10T16:55:02Z</dc:date>
    <item>
      <title>problem with the procedure</title>
      <link>https://communities.sas.com/t5/SAS-Programming/problem-with-the-procedure/m-p/602701#M174524</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hello&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I have the following problem:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I transformed the test data set as follows:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data test0;
  infile datalines dlm='|' dsd truncover;
  length date var1 var2 8;
  informat date datetime20.;
  format date datetime20.;
  input date  var1 var2;
datalines;
18JAN2017:10:15:00|4.7333510969|2.1
18JAN2017:10:30:00|7.1205629521|2.2
18JAN2017:10:45:00|9.4999079941|2.3
18JAN2017:11:00:00|10.529906839|2.4
18JAN2017:11:15:00|8.2806338208|2.5
18JAN2017:11:30:00|4.8167229459|2.6
18JAN2017:11:45:00|1.9273408359|2.7
16FEB2017:00:15:00|6.7830217885|3.1
16FEB2017:00:30:00|9.1163551218|3.2
16FEB2017:00:45:00|12.752718758|3.3
16FEB2017:01:00:00|14.196902639|3.4
16FEB2017:01:15:00|13.654308753|3.5
16FEB2017:01:30:00|11.574892194|3.6
16FEB2017:01:45:00|4.7012445855|3.7
run;



data test1 (drop = var1 var2);
set test0 (rename = (date = date_7));

var1_1 = lag6(var1);
var1_2 = lag5(var1);
var1_3 = lag4(var1);
var1_4 = lag3(var1);
var1_5 = lag2(var1);
var1_6 = lag1(var1);
var1_7 = var1;
var2_1 = lag6(var2);
var2_2 = lag5(var2);
var2_3 = lag4(var2);
var2_4 = lag3(var2);
var2_5 = lag2(var2);
var2_6 = lag1(var2);
var2_7 = var2;

if mod(_n_, 7)  = 0;

run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;SPAN&gt;How to quickly and cleverly return to the initial state test1 to test0. If possible, I would also like to ask for a better proposal for the first procedure.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data test1 (drop = var1 var2);
set test0 (rename = (date = date_7));

var1_1 = lag6(var1);
var1_2 = lag5(var1);
var1_3 = lag4(var1);
var1_4 = lag3(var1);
var1_5 = lag2(var1);
var1_6 = lag1(var1);
var1_7 = var1;
var2_1 = lag6(var2);
var2_2 = lag5(var2);
var2_3 = lag4(var2);
var2_4 = lag3(var2);
var2_5 = lag2(var2);
var2_6 = lag1(var2);
var2_7 = var2;

if mod(_n_, 7)  = 0;

run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;BR /&gt;&lt;SPAN&gt;Real data set have several thousand observations.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I made the transformation to save disk space and to speed up calculations, but at the end I have to return with the resulting data to the initial state.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 08 Nov 2019 10:29:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/problem-with-the-procedure/m-p/602701#M174524</guid>
      <dc:creator>makset</dc:creator>
      <dc:date>2019-11-08T10:29:53Z</dc:date>
    </item>
    <item>
      <title>Re: problem with the procedure</title>
      <link>https://communities.sas.com/t5/SAS-Programming/problem-with-the-procedure/m-p/602708#M174528</link>
      <description>&lt;P&gt;Please explain what you are trying to do in a lot more detail.&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How to quickly and cleverly return to the initial state test1 to test0.&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I don't understand what "return to the initial state" means.&lt;/P&gt;</description>
      <pubDate>Fri, 08 Nov 2019 11:59:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/problem-with-the-procedure/m-p/602708#M174528</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2019-11-08T11:59:09Z</dc:date>
    </item>
    <item>
      <title>Re: problem with the procedure</title>
      <link>https://communities.sas.com/t5/SAS-Programming/problem-with-the-procedure/m-p/602719#M174530</link>
      <description>&lt;P&gt;test0&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="test0.png" style="width: 375px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/33778iBA6E10AE533D1552/image-size/large?v=v2&amp;amp;px=999" role="button" title="test0.png" alt="test0.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;test1&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="test1.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/33779iF498CA2E0794E56B/image-size/large?v=v2&amp;amp;px=999" role="button" title="test1.png" alt="test1.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="tlid-translation translation"&gt;&lt;SPAN class="" title=""&gt;from the test1 table the procedure (e.g. test2) to return to test 0&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="tlid-translation translation"&gt;test2&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="test0.png" style="width: 375px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/33780iB26A915EF8D3E279/image-size/large?v=v2&amp;amp;px=999" role="button" title="test0.png" alt="test0.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 08 Nov 2019 12:32:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/problem-with-the-procedure/m-p/602719#M174530</guid>
      <dc:creator>makset</dc:creator>
      <dc:date>2019-11-08T12:32:19Z</dc:date>
    </item>
    <item>
      <title>Re: problem with the procedure</title>
      <link>https://communities.sas.com/t5/SAS-Programming/problem-with-the-procedure/m-p/602800#M174566</link>
      <description>&lt;P&gt;Your data sets are not visible and if you want help with the code we'd have to type out your data. Make it easier for us to help you please.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Post data as text as minimum, preferably as a data step. If you don't know how to do that, here are instructions on how to provide sample data as a data step:&lt;BR /&gt;&lt;A href="https://communities.sas.com/t5/SAS-Communities-Library/How-to-create-a-data-step-version-of-your-data-AKA-generate/ta-p/258712" target="_blank"&gt;https://communities.sas.com/t5/SAS-Communities-Library/How-to-create-a-data-step-version-of-your-data-AKA-generate/ta-p/258712&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Additionally, show what your inputs are, what the output is and describe the logic to get from one step to next. Please also ensure that your problem will scale, ie does it need to handle multiple groups or more variables?&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/17744"&gt;@makset&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;test0&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="test0.png" style="width: 375px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/33778iBA6E10AE533D1552/image-size/large?v=v2&amp;amp;px=999" role="button" title="test0.png" alt="test0.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;test1&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="test1.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/33779iF498CA2E0794E56B/image-size/large?v=v2&amp;amp;px=999" role="button" title="test1.png" alt="test1.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="tlid-translation translation"&gt;&lt;SPAN class="" title=""&gt;from the test1 table the procedure (e.g. test2) to return to test 0&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="tlid-translation translation"&gt;test2&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="test0.png" style="width: 375px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/33780iB26A915EF8D3E279/image-size/large?v=v2&amp;amp;px=999" role="button" title="test0.png" alt="test0.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 08 Nov 2019 18:22:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/problem-with-the-procedure/m-p/602800#M174566</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-11-08T18:22:03Z</dc:date>
    </item>
    <item>
      <title>Re: problem with the procedure</title>
      <link>https://communities.sas.com/t5/SAS-Programming/problem-with-the-procedure/m-p/603065#M174698</link>
      <description>&lt;P&gt;&lt;SPAN class="tlid-translation translation"&gt;&lt;SPAN class="" title=""&gt;I'm sorry I got mixed up.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="tlid-translation translation"&gt;&lt;SPAN class="" title=""&gt;Sometimes something that for us is not necessarily obvious to others.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="tlid-translation translation"&gt;&lt;SPAN class="" title=""&gt;The test0 table is the initial table at the input.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="tlid-translation translation"&gt;&lt;SPAN class="" title=""&gt;To save disk space and speed of calculations, I have made transpositions, but not classical ones, only every 7 observations.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="tlid-translation translation"&gt;&lt;SPAN class="" title=""&gt;Table test1 has changed as follows:&lt;BR /&gt;The date column has changed to date_7 but only the last observation in a given series, i.e. obs 7 and 14.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="tlid-translation translation"&gt;&lt;SPAN class="" title=""&gt;The column var1 row 1 to 7 changed to var1_1, var1_2, var1_3, var1_4, var1_5, var1_6, var1_7 row 1, and the column var2 row 8 to 14 changed to var2_1, var2_2, var2_3, var2_4, var2_5, var2_6, var2_7 row 2 &lt;SPAN title=""&gt;.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="tlid-translation translation"&gt;&lt;SPAN class="" title=""&gt;&lt;SPAN title=""&gt;My problem is that after making calculations from the test1 table, I have to go back to the form from the test0 table.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 10 Nov 2019 15:37:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/problem-with-the-procedure/m-p/603065#M174698</guid>
      <dc:creator>makset</dc:creator>
      <dc:date>2019-11-10T15:37:59Z</dc:date>
    </item>
    <item>
      <title>Re: problem with the procedure</title>
      <link>https://communities.sas.com/t5/SAS-Programming/problem-with-the-procedure/m-p/603066#M174699</link>
      <description>&lt;P&gt;You are TRANSPOSING your data.&amp;nbsp; From TALL to WIDE and you now what to transpose it from WIDE to TALL.&lt;/P&gt;
&lt;P&gt;You can use an ARRAY to help.&lt;/P&gt;
&lt;P&gt;From TALL to WIDE.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data wide ;
  do i=1 to 14 ;
    set tall ;
    array var1_&amp;nbsp;var1_1-var1_7 var2_1-var2_7&amp;nbsp;;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;var1_[i]&amp;nbsp;=&amp;nbsp;var1;
&amp;nbsp;&amp;nbsp;end;
  drop i;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;From WIDE to TALL.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data tall;
  set wide;
  array var1_&amp;nbsp;var1_1-var1_7 var2_1-var2_7;
  do i=1 to dim(var1_);
    var1 = var1_[i];
    output;
&amp;nbsp;&amp;nbsp;end;
  drop i var1_1-var1_7 var2_1-var2_7 ;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 10 Nov 2019 16:55:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/problem-with-the-procedure/m-p/603066#M174699</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-11-10T16:55:02Z</dc:date>
    </item>
    <item>
      <title>Re: problem with the procedure</title>
      <link>https://communities.sas.com/t5/SAS-Programming/problem-with-the-procedure/m-p/603134#M174725</link>
      <description>&lt;P&gt;&lt;SPAN class="tlid-translation translation"&gt;&lt;SPAN title=""&gt;Thank you for your answer.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN class="" title=""&gt;The solution is not entirely correct but you have helped me a lot to solve my problem.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="tlid-translation translation"&gt;&lt;SPAN class="" title=""&gt;The solution should look like this:&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data wide ;
  do i = 1 to 7;
    set tall ;
    array var1_ var1_1-var1_7;
	array var2_ var2_1-var2_7;
    var1_[i] = var1;
	var2_[i] = var2;
  end;
  drop i var1 var2;
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;and:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;
data tall;
attrib date1 format = datetime21.;
  set wide;
  array var1_ var1_1-var1_7;
  array var2_ var2_1-var2_7;
  do i = 1 to dim(var1_);
    var1 = var1_[i];
	var2 = var2_[i];
	date1 = INTNX('minute',date, -15 * (7 - i));
    output;
  end;
  drop i var1_1-var1_7 var2_1-var2_7 date ;
  rename date1 = date;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;SPAN class="tlid-translation translation"&gt;&lt;SPAN class="" title=""&gt;I have only one more question, you can solve this issue better and smarter:&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;date1 = INTNX('minute',date, -15 * (7 - i));&lt;/CODE&gt;&lt;/PRE&gt;
&lt;DIV class="text-wrap tlid-copy-target"&gt;
&lt;DIV class="result-shield-container tlid-copy-target" tabindex="0"&gt;&lt;SPAN class="tlid-translation translation"&gt;&lt;SPAN class="" title=""&gt;Thank you very much for your answer.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 11 Nov 2019 09:10:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/problem-with-the-procedure/m-p/603134#M174725</guid>
      <dc:creator>makset</dc:creator>
      <dc:date>2019-11-11T09:10:44Z</dc:date>
    </item>
    <item>
      <title>Re: problem with the procedure</title>
      <link>https://communities.sas.com/t5/SAS-Programming/problem-with-the-procedure/m-p/603191#M174759</link>
      <description>&lt;P&gt;First don't put datetime values into a variable named DATE.&amp;nbsp; You will just confuse yourself no end.&lt;/P&gt;
&lt;P&gt;A minute is 60 seconds. You are decrementing by 15 minutes for each iteration of the DO loop.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;...
output;
datetime = datetime - '00:15't;
...&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 11 Nov 2019 13:40:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/problem-with-the-procedure/m-p/603191#M174759</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-11-11T13:40:20Z</dc:date>
    </item>
    <item>
      <title>Re: problem with the procedure</title>
      <link>https://communities.sas.com/t5/SAS-Programming/problem-with-the-procedure/m-p/603260#M174794</link>
      <description>&lt;P&gt;&lt;SPAN class="tlid-translation translation"&gt;&lt;SPAN class="" title=""&gt;Your solution causes the datetime variable to decrease, i need it to grow&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 11 Nov 2019 15:58:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/problem-with-the-procedure/m-p/603260#M174794</guid>
      <dc:creator>makset</dc:creator>
      <dc:date>2019-11-11T15:58:03Z</dc:date>
    </item>
    <item>
      <title>Re: problem with the procedure</title>
      <link>https://communities.sas.com/t5/SAS-Programming/problem-with-the-procedure/m-p/603262#M174795</link>
      <description>&lt;P&gt;So you want to add instead of subtract?&lt;/P&gt;
&lt;P&gt;Which of the seven original datetime values did you keep when going from tall to wide?&lt;/P&gt;
&lt;P&gt;If the last then loop from 7 to 1 instead of from 1 to 7 and subtract.&lt;/P&gt;
&lt;P&gt;Or subtract 8*15 minutes before the DO loop and then add inside the DO loop.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;datetime=datetime-8*'00:15't;
do i=1 to 7 ;
  datetime=datetime+'00:15't;
  ...
  output;
end;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 11 Nov 2019 16:03:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/problem-with-the-procedure/m-p/603262#M174795</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-11-11T16:03:54Z</dc:date>
    </item>
    <item>
      <title>Re: problem with the procedure</title>
      <link>https://communities.sas.com/t5/SAS-Programming/problem-with-the-procedure/m-p/603271#M174798</link>
      <description>ha ha! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; nice tricks</description>
      <pubDate>Mon, 11 Nov 2019 16:20:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/problem-with-the-procedure/m-p/603271#M174798</guid>
      <dc:creator>makset</dc:creator>
      <dc:date>2019-11-11T16:20:54Z</dc:date>
    </item>
  </channel>
</rss>

