<?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: Transpose two variables at the same time in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Transpose-two-variables-at-the-same-time/m-p/199218#M49785</link>
    <description>&lt;P&gt;You can use PROC SUMMARY.&amp;nbsp; You do have to know or calculate the max obs by ID 2 in your.&lt;/P&gt;
&lt;DIV style="font-family: Courier New; font-size: 11pt;"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV style="font-family: Courier New; font-size: 11pt;"&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data tests;
   infile cards expandtabs; 
   input ID :$1. score grade :$1.; 
   cards; 
A  9  A
A  5  B
B  8  A
B  3  C
;;;;
   run; 
proc print; 
   run; 
proc summary data=tests nway; 
   class ID;
   output out=wide(drop=_:) idgroup(out[2](score grade)=);
   run; 
proc print; 
   run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;/DIV&gt;
&lt;DIV style="font-family: Courier New; font-size: 11pt;"&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV style="font-family: Courier New; font-size: 11pt;"&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;IMG class="jive-image" alt="3-11-2015 10-49-04 AM.png" src="https://communities.sas.com/legacyfs/online/9529_3-11-2015 10-49-04 AM.png" border="0" /&gt;&lt;/SPAN&gt;&lt;/DIV&gt;</description>
    <pubDate>Mon, 26 Aug 2019 18:26:58 GMT</pubDate>
    <dc:creator>data_null__</dc:creator>
    <dc:date>2019-08-26T18:26:58Z</dc:date>
    <item>
      <title>Transpose two variables at the same time</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Transpose-two-variables-at-the-same-time/m-p/199214#M49781</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The data I have is as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" width="192"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD class="xl65" height="20" width="64"&gt;ID&lt;/TD&gt;&lt;TD class="xl65" style="border-left: none;" width="64"&gt;Score&lt;/TD&gt;&lt;TD class="xl65" style="border-left: none;" width="64"&gt;Grade&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl65" height="20" style="border-top: none;"&gt;A&lt;/TD&gt;&lt;TD class="xl65" style="border-top: none; border-left: none;"&gt;9&lt;/TD&gt;&lt;TD class="xl65" style="border-top: none; border-left: none;"&gt;A&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl65" height="20" style="border-top: none;"&gt;A&lt;/TD&gt;&lt;TD class="xl65" style="border-top: none; border-left: none;"&gt;5&lt;/TD&gt;&lt;TD class="xl65" style="border-top: none; border-left: none;"&gt;B&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl65" height="20" style="border-top: none;"&gt;B&lt;/TD&gt;&lt;TD class="xl65" style="border-top: none; border-left: none;"&gt;8&lt;/TD&gt;&lt;TD class="xl65" style="border-top: none; border-left: none;"&gt;A&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl65" height="20" style="border-top: none;"&gt;B&lt;/TD&gt;&lt;TD class="xl65" style="border-top: none; border-left: none;"&gt;3&lt;/TD&gt;&lt;TD class="xl65" style="border-top: none; border-left: none;"&gt;C&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to transpose it as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" width="320"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD class="xl65" height="20" width="64"&gt;ID&lt;/TD&gt;&lt;TD class="xl65" style="border-left: none;" width="64"&gt;Score1&lt;/TD&gt;&lt;TD class="xl65" style="border-left: none;" width="64"&gt;Score2&lt;/TD&gt;&lt;TD class="xl65" style="border-left: none;" width="64"&gt;Grade1&lt;/TD&gt;&lt;TD class="xl65" style="border-left: none;" width="64"&gt;Grade2&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl65" height="20" style="border-top: none;"&gt;A&lt;/TD&gt;&lt;TD class="xl65" style="border-top: none; border-left: none;"&gt;9&lt;/TD&gt;&lt;TD class="xl65" style="border-top: none; border-left: none;"&gt;5&lt;/TD&gt;&lt;TD class="xl65" style="border-top: none; border-left: none;"&gt;A&lt;/TD&gt;&lt;TD class="xl65" style="border-top: none; border-left: none;"&gt;B&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl65" height="20" style="border-top: none;"&gt;B&lt;/TD&gt;&lt;TD class="xl65" style="border-top: none; border-left: none;"&gt;8&lt;/TD&gt;&lt;TD class="xl65" style="border-top: none; border-left: none;"&gt;3&lt;/TD&gt;&lt;TD class="xl65" style="border-top: none; border-left: none;"&gt;A&lt;/TD&gt;&lt;TD class="xl65" style="border-top: none; border-left: none;"&gt;C&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, I'm not able to transpose two variables at the same time -- prefix doesn't take two variables. I'm transposing one variable at a time and then merging the two datasets. Could this be done in one step?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;P&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Mar 2015 15:21:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Transpose-two-variables-at-the-same-time/m-p/199214#M49781</guid>
      <dc:creator>pmesh</dc:creator>
      <dc:date>2015-03-11T15:21:45Z</dc:date>
    </item>
    <item>
      <title>Re: Transpose two variables at the same time</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Transpose-two-variables-at-the-same-time/m-p/199215#M49782</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are there &lt;STRONG&gt;always exactly 2&lt;/STRONG&gt; values for ID? If so:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data want (drop= score grade);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; set have;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; length grade1 grade2 $ 1;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; retain score1 grade1;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; by id notsorted;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if first.id then do;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; score1=score;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; grade1=grade;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; end;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if last.id then do;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; score2=score;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; grade2=grade;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; output;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; end;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;might work&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Mar 2015 15:28:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Transpose-two-variables-at-the-same-time/m-p/199215#M49782</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2015-03-11T15:28:56Z</dc:date>
    </item>
    <item>
      <title>Re: Transpose two variables at the same time</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Transpose-two-variables-at-the-same-time/m-p/199216#M49783</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi - just wanted you to know that I moved this message from the 'about communities" community into the SAS Procedures community. Thanks! &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Mar 2015 15:38:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Transpose-two-variables-at-the-same-time/m-p/199216#M49783</guid>
      <dc:creator>Community_Help</dc:creator>
      <dc:date>2015-03-11T15:38:37Z</dc:date>
    </item>
    <item>
      <title>Re: Transpose two variables at the same time</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Transpose-two-variables-at-the-same-time/m-p/199217#M49784</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks, but there are varying number of records for each ID.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Mar 2015 15:38:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Transpose-two-variables-at-the-same-time/m-p/199217#M49784</guid>
      <dc:creator>pmesh</dc:creator>
      <dc:date>2015-03-11T15:38:54Z</dc:date>
    </item>
    <item>
      <title>Re: Transpose two variables at the same time</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Transpose-two-variables-at-the-same-time/m-p/199218#M49785</link>
      <description>&lt;P&gt;You can use PROC SUMMARY.&amp;nbsp; You do have to know or calculate the max obs by ID 2 in your.&lt;/P&gt;
&lt;DIV style="font-family: Courier New; font-size: 11pt;"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV style="font-family: Courier New; font-size: 11pt;"&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data tests;
   infile cards expandtabs; 
   input ID :$1. score grade :$1.; 
   cards; 
A  9  A
A  5  B
B  8  A
B  3  C
;;;;
   run; 
proc print; 
   run; 
proc summary data=tests nway; 
   class ID;
   output out=wide(drop=_:) idgroup(out[2](score grade)=);
   run; 
proc print; 
   run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;/DIV&gt;
&lt;DIV style="font-family: Courier New; font-size: 11pt;"&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV style="font-family: Courier New; font-size: 11pt;"&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;IMG class="jive-image" alt="3-11-2015 10-49-04 AM.png" src="https://communities.sas.com/legacyfs/online/9529_3-11-2015 10-49-04 AM.png" border="0" /&gt;&lt;/SPAN&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 26 Aug 2019 18:26:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Transpose-two-variables-at-the-same-time/m-p/199218#M49785</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2019-08-26T18:26:58Z</dc:date>
    </item>
    <item>
      <title>Re: Transpose two variables at the same time</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Transpose-two-variables-at-the-same-time/m-p/199219#M49786</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You would need to decide what the driving maximum is then.&amp;nbsp; In the code below I assume max count of grades with be the maximum number of columns.&amp;nbsp; Also note, that I put extra code in the final step, whilst in your example it works fine I add this code to cover times where one or the other is missing (as it would retain previous in that instance:&lt;/P&gt;&lt;P&gt;data have;&lt;/P&gt;&lt;P&gt;&amp;nbsp; infile datalines;&lt;/P&gt;&lt;P&gt;&amp;nbsp; input ID $ Score Grade $;&lt;/P&gt;&lt;P&gt;datalines;&lt;/P&gt;&lt;P&gt;A 9 A&lt;/P&gt;&lt;P&gt;A 5 B&lt;/P&gt;&lt;P&gt;B 8 A&lt;/P&gt;&lt;P&gt;B 3 C&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc sql noprint;&lt;/P&gt;&lt;P&gt;&amp;nbsp; select&amp;nbsp; max(CNT) &lt;/P&gt;&lt;P&gt;&amp;nbsp; into&amp;nbsp;&amp;nbsp;&amp;nbsp; :TOT_ARRAY&lt;/P&gt;&lt;P&gt;&amp;nbsp; from&amp;nbsp;&amp;nbsp;&amp;nbsp; (select ID,COUNT(GRADE) as CNT from WORK.HAVE group by ID)&lt;/P&gt;&lt;P&gt;&amp;nbsp; group by ID;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data want (drop=array_cnt i score grade);&lt;/P&gt;&lt;P&gt;&amp;nbsp; set have;&lt;/P&gt;&lt;P&gt;&amp;nbsp; array score_{&amp;amp;TOT_ARRAY.} 8.;&lt;/P&gt;&lt;P&gt;&amp;nbsp; array grade_{&amp;amp;TOT_ARRAY.} $1.;&lt;/P&gt;&lt;P&gt;&amp;nbsp; by id;&lt;/P&gt;&lt;P&gt;&amp;nbsp; retain array_cnt score_1-score_%trim(&amp;amp;TOT_ARRAY.) grade_1-grade_%trim(&amp;amp;TOT_ARRAY.);&lt;/P&gt;&lt;P&gt;&amp;nbsp; if first.id then array_cnt=1;&lt;/P&gt;&lt;P&gt;&amp;nbsp; score_{array_cnt}=score;&lt;/P&gt;&lt;P&gt;&amp;nbsp; grade_{array_cnt}=grade;&lt;/P&gt;&lt;P&gt;&amp;nbsp; array_cnt=array_cnt+1;&lt;/P&gt;&lt;P&gt;&amp;nbsp; if last.id then do;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; output;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; do i=1 to &amp;amp;TOT_ARRAY.;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; score_{i}=.;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; grade_{i}="";&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; end;&lt;/P&gt;&lt;P&gt;&amp;nbsp; end;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Mar 2015 15:59:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Transpose-two-variables-at-the-same-time/m-p/199219#M49786</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2015-03-11T15:59:02Z</dc:date>
    </item>
    <item>
      <title>Re: Transpose two variables at the same time</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Transpose-two-variables-at-the-same-time/m-p/199220#M49787</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To calculate max obs per ID you can do this.&amp;nbsp; This works with max obs per ID of 100 or less.&amp;nbsp; One nice feature of this "transpose" in addition of multiple variables is the data types are preserved.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;DIV style="font-family: Courier New; font-size: 11pt;"&gt;&lt;STRONG style="color: #000080; background-color: #ffffff;"&gt;proc&lt;/STRONG&gt; &lt;STRONG style="color: #000080; background-color: #ffffff;"&gt;sql&lt;/STRONG&gt; &lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;noprint&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;; &lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;select&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; max(obs) &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;into&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; :obs &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;from&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;select&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; count(*) &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;as&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; obs &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;from&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; tests &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;group&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;by&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; ID);&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;STRONG style="color: #000080; background-color: #ffffff;"&gt;quit&lt;/STRONG&gt;; &lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;STRONG style="color: #000080; background-color: #ffffff;"&gt;proc&lt;/STRONG&gt; &lt;STRONG style="color: #000080; background-color: #ffffff;"&gt;summary&lt;/STRONG&gt; &lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;data&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;=tests &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;nway&lt;/SPAN&gt;; &lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;class&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; ID;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;output&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;out&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;=wide(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;drop&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;=_:) &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;idgroup&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;out&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;[&amp;amp;&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;obs&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;](score grade)=);&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;STRONG style="color: #000080; background-color: #ffffff;"&gt;run&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Mar 2015 16:45:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Transpose-two-variables-at-the-same-time/m-p/199220#M49787</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2015-03-11T16:45:19Z</dc:date>
    </item>
    <item>
      <title>Re: Transpose two variables at the same time</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Transpose-two-variables-at-the-same-time/m-p/199221#M49788</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks both, RW9 and data_null_ !&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Mar 2015 16:46:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Transpose-two-variables-at-the-same-time/m-p/199221#M49788</guid>
      <dc:creator>pmesh</dc:creator>
      <dc:date>2015-03-11T16:46:36Z</dc:date>
    </item>
  </channel>
</rss>

