<?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: Tranpose all variables in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Tranpose-all-variables/m-p/634690#M77997</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/109034"&gt;@sahoositaram555&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The variables I'm getting are numeric with a length of 8 (see screenshots below). I've also made Proc Transpose adding an underscore to the created variable names so that you end up with valid SAS variable names.&lt;/P&gt;
&lt;P&gt;Another option is to use the %transpose() macro as documented &lt;A href="https://communities.sas.com/t5/SAS-Communities-Library/A-better-way-to-FLIP-i-e-transpose-make-wide-a-dataset/ta-p/433620" target="_self"&gt;here&lt;/A&gt;&amp;nbsp;- and should you have problems using it then &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13711"&gt;@art297&lt;/a&gt;&amp;nbsp;can certainly support you.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data a;
  input subjid visitc:$20. sodium potassium bicarbonate 
        glucose bloodureanitrogen creatinine SGPT SGOT GGT;
  cards;
01001 3th_visit 12.2 34.2 33.2 33 22 123 90 89 89.3
01001 6th_visit 22.3 41.6 56.1 89 12 133 80 49 39.3
01001 9th_visit 20.2 40.2 23.2 23 12 230 30 99 19.3
01002 3th_visit 13.2 41.2 12.2 13 43 634 65 14 23.2
01002 6th_visit 90.2 21.2 33.2 33 22 123 90 89 89.3
01002 9th_visit 29.2 34.2 30.2 13 12 126 30 29 99.3
;

proc transpose data=a out=t_a name=variables prefix=_;
  by subjid;
  id visitc;
  var sodium--ggt;
run;

proc print data=t_a ;
run;

proc contents data=t_a;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Patrick_0-1585133314202.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/37344i886E6F4195060244/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Patrick_0-1585133314202.png" alt="Patrick_0-1585133314202.png" /&gt;&lt;/span&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Patrick_1-1585133355777.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/37345iBDBCE7208A0E75A0/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Patrick_1-1585133355777.png" alt="Patrick_1-1585133355777.png" /&gt;&lt;/span&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;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 25 Mar 2020 11:01:00 GMT</pubDate>
    <dc:creator>Patrick</dc:creator>
    <dc:date>2020-03-25T11:01:00Z</dc:date>
    <item>
      <title>Tranpose all variables</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Tranpose-all-variables/m-p/634580#M77976</link>
      <description>&lt;P&gt;Dear All,&lt;/P&gt;
&lt;P&gt;I have a dataset like posted below.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data one;&lt;/P&gt;
&lt;P&gt;input subjid sodium potassium bicarbonate glucose bloodureanitrogen creatinine SGPT SGOT GGT;&lt;/P&gt;
&lt;P&gt;cards;&lt;/P&gt;
&lt;P&gt;01001 12.2 34.2 33.2 33 22 123 90 89 89.3&lt;/P&gt;
&lt;P&gt;01002 13.2 34.2 32.2 23 33 234 45 34 23.2&lt;/P&gt;
&lt;P&gt;;&lt;/P&gt;
&lt;P&gt;run;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would like to produce :&lt;/P&gt;
&lt;P&gt;subjid variable col1&lt;/P&gt;
&lt;P&gt;01001 sodium&amp;nbsp; 12.2&lt;/P&gt;
&lt;P&gt;01001 potasium&amp;nbsp; 34.2&lt;/P&gt;
&lt;P&gt;01001 bicarbonate 33.2&lt;/P&gt;
&lt;P&gt;01001 glucose 33&lt;/P&gt;
&lt;P&gt;01001 ..&lt;/P&gt;
&lt;P&gt;.....&amp;nbsp;&lt;/P&gt;
&lt;P&gt;01002 Sodium 13.2&lt;/P&gt;
&lt;P&gt;01002 potasium&amp;nbsp; 34.2&lt;/P&gt;
&lt;P&gt;01002 bicarbonate&amp;nbsp; 32.2&lt;/P&gt;
&lt;P&gt;01002 glucose...&lt;/P&gt;
&lt;P&gt;........&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;i tried with proc transpose but didn't work, So below code i have used&lt;/P&gt;
&lt;P&gt;proc transpose data=one;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;by subjid;&lt;/P&gt;
&lt;P&gt;var _all_;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;any suggestions?&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;
&lt;P&gt;&amp;nbsp;&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;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would like to produce :&lt;/P&gt;
&lt;P&gt;subjid variable col1&lt;/P&gt;
&lt;P&gt;01001 sodium&amp;nbsp;&lt;/P&gt;
&lt;P&gt;01001 sodium&amp;nbsp;&lt;/P&gt;
&lt;P&gt;01001 sodium&amp;nbsp;&lt;/P&gt;
&lt;P&gt;01001 sodium&amp;nbsp;&lt;/P&gt;
&lt;P&gt;01001 sodium&amp;nbsp;&lt;/P&gt;
&lt;P&gt;01002 potassium&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;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 24 Mar 2020 21:11:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Tranpose-all-variables/m-p/634580#M77976</guid>
      <dc:creator>sahoositaram555</dc:creator>
      <dc:date>2020-03-24T21:11:13Z</dc:date>
    </item>
    <item>
      <title>Re: Tranpose all variables</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Tranpose-all-variables/m-p/634587#M77977</link>
      <description>&lt;P&gt;Add an out= option, as well as a name= option. e.g.:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc transpose data=one out=want name=variable; 
  by subjid;
  var _all_;
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Art, CEO, AnalystFinder.com&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 24 Mar 2020 21:22:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Tranpose-all-variables/m-p/634587#M77977</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2020-03-24T21:22:28Z</dc:date>
    </item>
    <item>
      <title>Re: Tranpose all variables</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Tranpose-all-variables/m-p/634589#M77978</link>
      <description>&lt;P&gt;Building on art297's response, instead of using var _all_; specify each variable.&amp;nbsp; otherwise you'll get a row for subjid too.&lt;/P&gt;
&lt;P&gt;var sodium potassium bicarbonate glucose bloodureanitrogen creatinine SGPT SGOT GGT;&lt;/P&gt;</description>
      <pubDate>Tue, 24 Mar 2020 21:29:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Tranpose-all-variables/m-p/634589#M77978</guid>
      <dc:creator>JerryV</dc:creator>
      <dc:date>2020-03-24T21:29:28Z</dc:date>
    </item>
    <item>
      <title>Re: Tranpose all variables</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Tranpose-all-variables/m-p/634592#M77979</link>
      <description>&lt;P&gt;I agree with&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13878"&gt;@JerryV&lt;/a&gt;&amp;nbsp;, but you can also use a variable list. e.g.:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc transpose data=one out=want name=variable; 
  by subjid;
  var sodium--GGT;
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Art, CEO, AnalystFinder.com&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 24 Mar 2020 21:37:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Tranpose-all-variables/m-p/634592#M77979</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2020-03-24T21:37:11Z</dc:date>
    </item>
    <item>
      <title>Re: Tranpose all variables</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Tranpose-all-variables/m-p/634627#M77983</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13711"&gt;@art297&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This variable list is only going to work if &lt;EM&gt;subjid&lt;/EM&gt; precedes &lt;EM&gt;sodium&lt;/EM&gt; in the PDV.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Mar 2020 05:26:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Tranpose-all-variables/m-p/634627#M77983</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2020-03-25T05:26:13Z</dc:date>
    </item>
    <item>
      <title>Re: Tranpose all variables</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Tranpose-all-variables/m-p/634628#M77984</link>
      <description>Thank you &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13711"&gt;@art297&lt;/a&gt;.it really worked. however i'm curious to hear from you about is there any other functionality of using name=Variable option  apart from renaming _name_ to Variable,probaly any string reason which i'm missing out ?&lt;BR /&gt;&lt;BR /&gt;Hope to hear from you . thanks in advance.</description>
      <pubDate>Wed, 25 Mar 2020 05:27:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Tranpose-all-variables/m-p/634628#M77984</guid>
      <dc:creator>sahoositaram555</dc:creator>
      <dc:date>2020-03-25T05:27:38Z</dc:date>
    </item>
    <item>
      <title>Re: Tranpose all variables</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Tranpose-all-variables/m-p/634634#M77985</link>
      <description>&lt;P&gt;Hi &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/12447"&gt;@Patrick&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;i also realized that the same code with an id statement doesn't work when we have subjid sorted by both subjid and visits. eg: please see below&lt;/P&gt;
&lt;P&gt;data a;&lt;/P&gt;
&lt;P&gt;input subjid visitc sodium potassium bicarbonate glucose bloodureanitrogen creatinine SGPT SGOT GGT;&lt;/P&gt;
&lt;P&gt;cards;&lt;/P&gt;
&lt;P&gt;01001 3th_visit 12.2 34.2 33.2 33 22 123 90 89 89.3&lt;/P&gt;
&lt;P&gt;01001 6th_visit 22.3 41.6 56.1 89 12 133 80 49 39.3&lt;/P&gt;
&lt;P&gt;01001 9th_visit 20.2 40.2 23.2 23 12 230 30 99 19.3&lt;/P&gt;
&lt;P&gt;01002 3th_visit 13.2 41.2 12.2 13 43 634 65 14 23.2&lt;/P&gt;
&lt;P&gt;01002 6th_visit 90.2 21.2 33.2 33 22 123 90 89 89.3&lt;/P&gt;
&lt;P&gt;01002 9th_visit 29.2 34.2 30.2 13 12 126 30 29 99.3&lt;/P&gt;
&lt;P&gt;;&lt;/P&gt;
&lt;P&gt;run;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;when i transpose this by below code:&lt;/P&gt;
&lt;P&gt;proc transpose data=a out=t_a name=variables ;&lt;BR /&gt;by subjid;&lt;BR /&gt;var sodium--ggt;&lt;BR /&gt;id visit;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;i'm getting in the output where subjid is coming and id variable visit is coming appropriately but the values are not coming, they are blank.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;any thoughts?&lt;/P&gt;
&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13711"&gt;@art297&lt;/a&gt;&amp;nbsp; it would be great to have your response aswell.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Mar 2020 07:12:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Tranpose-all-variables/m-p/634634#M77985</guid>
      <dc:creator>sahoositaram555</dc:creator>
      <dc:date>2020-03-25T07:12:07Z</dc:date>
    </item>
    <item>
      <title>Re: Tranpose all variables</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Tranpose-all-variables/m-p/634636#M77986</link>
      <description>Thank you. It's working fine.</description>
      <pubDate>Wed, 25 Mar 2020 07:11:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Tranpose-all-variables/m-p/634636#M77986</guid>
      <dc:creator>sahoositaram555</dc:creator>
      <dc:date>2020-03-25T07:11:18Z</dc:date>
    </item>
    <item>
      <title>Re: Tranpose all variables</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Tranpose-all-variables/m-p/634666#M77990</link>
      <description>&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/109034"&gt;@sahoositaram555&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hi &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/12447"&gt;@Patrick&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;i also realized that the same code with an id statement doesn't work when we have subjid sorted by both subjid and visits. eg: please see below&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;That's because visitc is already missing in your source table A. You need to use a character informat in order to read the values for visitc.&lt;/P&gt;
&lt;P&gt;Once the code is fixed things work as desired.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data a;
  input subjid visitc:$20. sodium potassium bicarbonate 
        glucose bloodureanitrogen creatinine SGPT SGOT GGT;
  cards;
01001 3th_visit 12.2 34.2 33.2 33 22 123 90 89 89.3
01001 6th_visit 22.3 41.6 56.1 89 12 133 80 49 39.3
01001 9th_visit 20.2 40.2 23.2 23 12 230 30 99 19.3
01002 3th_visit 13.2 41.2 12.2 13 43 634 65 14 23.2
01002 6th_visit 90.2 21.2 33.2 33 22 123 90 89 89.3
01002 9th_visit 29.2 34.2 30.2 13 12 126 30 29 99.3
;

proc transpose data=a out=t_a name=variables;
  by subjid;
  id visitc;
  var sodium--ggt;
run;

proc print data=t_a ;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Mar 2020 10:13:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Tranpose-all-variables/m-p/634666#M77990</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2020-03-25T10:13:11Z</dc:date>
    </item>
    <item>
      <title>Re: Tranpose all variables</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Tranpose-all-variables/m-p/634670#M77991</link>
      <description>Hi &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/12447"&gt;@Patrick&lt;/a&gt;, &lt;BR /&gt;Thank your for your reply. I have tried this. what i get to see is there are 3 columns named as 3thvisit 6thvisit 9thvisit are getting created but they all have length of 5000 and the values , which i can't use for any of the derivation , neither i can use any function to extract the value. example if i use a cat function or compress function to reduce the length or even i tried by assigning a lesser length by mentioning it before set statement so that PDV get the shorter length but it's not working. i have tried to append the value to other variable, but its putting missing value there as well.</description>
      <pubDate>Wed, 25 Mar 2020 10:18:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Tranpose-all-variables/m-p/634670#M77991</guid>
      <dc:creator>sahoositaram555</dc:creator>
      <dc:date>2020-03-25T10:18:26Z</dc:date>
    </item>
    <item>
      <title>Re: Tranpose all variables</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Tranpose-all-variables/m-p/634690#M77997</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/109034"&gt;@sahoositaram555&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The variables I'm getting are numeric with a length of 8 (see screenshots below). I've also made Proc Transpose adding an underscore to the created variable names so that you end up with valid SAS variable names.&lt;/P&gt;
&lt;P&gt;Another option is to use the %transpose() macro as documented &lt;A href="https://communities.sas.com/t5/SAS-Communities-Library/A-better-way-to-FLIP-i-e-transpose-make-wide-a-dataset/ta-p/433620" target="_self"&gt;here&lt;/A&gt;&amp;nbsp;- and should you have problems using it then &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13711"&gt;@art297&lt;/a&gt;&amp;nbsp;can certainly support you.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data a;
  input subjid visitc:$20. sodium potassium bicarbonate 
        glucose bloodureanitrogen creatinine SGPT SGOT GGT;
  cards;
01001 3th_visit 12.2 34.2 33.2 33 22 123 90 89 89.3
01001 6th_visit 22.3 41.6 56.1 89 12 133 80 49 39.3
01001 9th_visit 20.2 40.2 23.2 23 12 230 30 99 19.3
01002 3th_visit 13.2 41.2 12.2 13 43 634 65 14 23.2
01002 6th_visit 90.2 21.2 33.2 33 22 123 90 89 89.3
01002 9th_visit 29.2 34.2 30.2 13 12 126 30 29 99.3
;

proc transpose data=a out=t_a name=variables prefix=_;
  by subjid;
  id visitc;
  var sodium--ggt;
run;

proc print data=t_a ;
run;

proc contents data=t_a;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Patrick_0-1585133314202.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/37344i886E6F4195060244/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Patrick_0-1585133314202.png" alt="Patrick_0-1585133314202.png" /&gt;&lt;/span&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Patrick_1-1585133355777.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/37345iBDBCE7208A0E75A0/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Patrick_1-1585133355777.png" alt="Patrick_1-1585133355777.png" /&gt;&lt;/span&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;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Mar 2020 11:01:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Tranpose-all-variables/m-p/634690#M77997</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2020-03-25T11:01:00Z</dc:date>
    </item>
    <item>
      <title>Re: Tranpose all variables</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Tranpose-all-variables/m-p/634704#M78000</link>
      <description>Thanks &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/12447"&gt;@Patrick&lt;/a&gt; . glad to see your response. it worked.</description>
      <pubDate>Wed, 25 Mar 2020 11:44:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Tranpose-all-variables/m-p/634704#M78000</guid>
      <dc:creator>sahoositaram555</dc:creator>
      <dc:date>2020-03-25T11:44:21Z</dc:date>
    </item>
  </channel>
</rss>

