<?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 question? in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Transpose-question/m-p/263722#M57748</link>
    <description>&lt;P&gt;You need post more data to clarify your question.&lt;/P&gt;
&lt;P&gt;Use UPDATE skill proposed by John King.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want;
 update have(obs=0) have;
 by acctnum ;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Thu, 14 Apr 2016 01:53:32 GMT</pubDate>
    <dc:creator>Ksharp</dc:creator>
    <dc:date>2016-04-14T01:53:32Z</dc:date>
    <item>
      <title>Transpose question?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Transpose-question/m-p/263602#M57744</link>
      <description>&lt;P&gt;/*Hi SAS forum,&lt;/P&gt;&lt;P&gt;I have the following SAS data set called "Have" (also attahced in xlsx for clarity. see "Have.xlsx").&lt;/P&gt;&lt;P&gt;It shows the value of variable 1 in the current month for account number 111 which is 9.&lt;/P&gt;&lt;P&gt;Then shows the value of variable 2 in the current month for account number 111 which is 8.&lt;/P&gt;&lt;P&gt;Then shows the value of variable 1 in the previous month for account number 111 which is 4.&lt;/P&gt;&lt;P&gt;Then shows the value of variable 2 in the previous month for account number 111 which is 7.&lt;/P&gt;&lt;P&gt;*/&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;STRONG&gt;data&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;&lt;FONT face="Courier New" size="3"&gt; have;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;input&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;&lt;FONT face="Courier New" size="3"&gt; acctnum yearmonth V1_cur_mth &lt;/FONT&gt;&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;12&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="3"&gt;&lt;FONT face="Courier New" size="3"&gt; V2_cur_mth &lt;/FONT&gt;&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;14&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="3"&gt;&lt;FONT face="Courier New" size="3"&gt; V1_prev_mth &lt;/FONT&gt;&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;16&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="3"&gt;&lt;FONT face="Courier New" size="3"&gt; V2_prev_mth &lt;/FONT&gt;&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;18&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="3"&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;cards&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;111 201603 . . 4 7&lt;/P&gt;&lt;P&gt;111 201604 9 8 . .&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;Q.&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; Using the above &lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="3"&gt;"Have"&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; sas dataset I wanted to create the SAS dataset as shown in the attached &lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;&lt;FONT face="Courier New" size="3"&gt;file named "want&lt;/FONT&gt;&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;.x&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;lsx".&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;&lt;FONT face="Courier New" size="3"&gt; This means I wnated to get all rows into a single &lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;row.&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;&lt;FONT face="Courier New" size="3"&gt; And Wanted to show up only the &lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;&lt;FONT face="Courier New" size="3"&gt;latest month for the variable called &lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="3"&gt;&lt;FONT color="#800080" face="Courier New" size="3"&gt;&lt;FONT color="#800080" face="Courier New" size="3"&gt;"yearmonth"&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;.&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="3"&gt;&lt;FONT face="Courier New" size="3"&gt; And Wanted to show in this sequence, i.e. V1_cur_mth, V1_prev_mth, V2_cur_mth,&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;V2_prev_mth.&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;&lt;FONT face="Courier New" size="3"&gt;I tried several ways but too complicated to my SAS &lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;knowledge.&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;&lt;FONT face="Courier New" size="3"&gt;Could someone &lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;help.&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Apr 2016 17:22:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Transpose-question/m-p/263602#M57744</guid>
      <dc:creator>dunga</dc:creator>
      <dc:date>2016-04-13T17:22:14Z</dc:date>
    </item>
    <item>
      <title>Re: Transpose question?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Transpose-question/m-p/263612#M57745</link>
      <description>&lt;P&gt;Post what you've tried. Please try including your data as a data step instead of XLSX or images.&lt;/P&gt;</description>
      <pubDate>Wed, 13 Apr 2016 17:52:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Transpose-question/m-p/263612#M57745</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-04-13T17:52:10Z</dc:date>
    </item>
    <item>
      <title>Re: Transpose question?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Transpose-question/m-p/263650#M57746</link>
      <description>&lt;P&gt;Exactly what do you mean by "&lt;FONT face="Courier New"&gt;&amp;nbsp;This means I wnated to get all rows into a single &lt;/FONT&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;row?"&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;&lt;FONT color="#000000" face="arial,helvetica,sans-serif"&gt;With only two records for input and only one non-missing value for the V1 and V2 variables&amp;nbsp;the rule could be the maximum, minimum, sum or even&amp;nbsp;mean value of the variables.&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;&lt;FONT color="#000000" face="arial,helvetica,sans-serif"&gt;one way would be&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;&lt;FONT color="#000000" face="arial,helvetica,sans-serif"&gt;proc summary data=have nway;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;&lt;FONT color="#000000" face="arial,helvetica,sans-serif"&gt;&amp;nbsp;&amp;nbsp; class acctnum;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;&lt;FONT color="#000000" face="arial,helvetica,sans-serif"&gt;&amp;nbsp;&amp;nbsp; var yearmonth V1_cur_mth V1_prev_mth V2_cur_mth V2_prev_mth;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;&lt;FONT color="#000000" face="arial,helvetica,sans-serif"&gt;&amp;nbsp;&amp;nbsp; output out=want (drop= _:) max= ;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;&lt;FONT color="#000000" face="arial,helvetica,sans-serif"&gt;run;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Apr 2016 20:07:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Transpose-question/m-p/263650#M57746</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2016-04-13T20:07:09Z</dc:date>
    </item>
    <item>
      <title>Re: Transpose question?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Transpose-question/m-p/263722#M57748</link>
      <description>&lt;P&gt;You need post more data to clarify your question.&lt;/P&gt;
&lt;P&gt;Use UPDATE skill proposed by John King.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want;
 update have(obs=0) have;
 by acctnum ;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 14 Apr 2016 01:53:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Transpose-question/m-p/263722#M57748</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-04-14T01:53:32Z</dc:date>
    </item>
    <item>
      <title>Re: Transpose question?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Transpose-question/m-p/263892#M57752</link>
      <description>&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;STRONG&gt;Hi Ballardw, Ksharp and Reeza,&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;STRONG&gt;Sorry, I have below dataset called "have". &lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;STRONG&gt;data&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; have;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;input&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;&lt;FONT face="Courier New" size="3"&gt; acctnum yearmonth balance_3 balance_2 balance_1 credit_limit_3 credit_limit_2 credit_limit_1;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;cards&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;111 201601 . . 100 . . 15000&lt;/P&gt;&lt;P&gt;111 201602 . 200 . . 12000 .&lt;/P&gt;&lt;P&gt;111 201603 150 . . 10000 . .&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;STRONG&gt;Q: How can I&amp;nbsp;create the below "Want" dataset using the&amp;nbsp;above "have" dataset? You will note that yearmonth value that should be shown up in the "want" dataset should be the&amp;nbsp;latest yearmonth value.&amp;nbsp;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;STRONG&gt;data&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; want;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;input&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;&lt;FONT face="Courier New" size="3"&gt; acctnum yearmonth balance_3 balance_2 balance_1 credit_limit_3 credit_limit_2 credit_limit_1;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;cards&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;111 201603 150 200 100 10000 12000 15000&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;&lt;FONT face="Courier New" size="3"&gt;Thanks&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Apr 2016 14:50:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Transpose-question/m-p/263892#M57752</guid>
      <dc:creator>dunga</dc:creator>
      <dc:date>2016-04-14T14:50:24Z</dc:date>
    </item>
    <item>
      <title>Re: Transpose question?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Transpose-question/m-p/263932#M57754</link>
      <description>&lt;P&gt;You have not actually provided any additional information just one more record.&lt;/P&gt;
&lt;P&gt;The previous code I posted, with the variable names change does what you request. Did you try it?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I suspect that you have an issue with what ever is generating your actual "have" data set.&lt;/P&gt;</description>
      <pubDate>Thu, 14 Apr 2016 16:44:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Transpose-question/m-p/263932#M57754</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2016-04-14T16:44:48Z</dc:date>
    </item>
    <item>
      <title>Re: Transpose question?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Transpose-question/m-p/263944#M57756</link>
      <description>&lt;P&gt;&lt;STRONG&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;Hi Ballardw&lt;/FONT&gt;&lt;/STRONG&gt;,&lt;/P&gt;&lt;P&gt;Yes I tried like below but doesn't&amp;nbsp;produce the resutls I wanted.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;STRONG&gt;proc&lt;/STRONG&gt;&lt;/FONT&gt; &lt;STRONG&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;summary&lt;/FONT&gt;&lt;/STRONG&gt; &lt;FONT color="#0000ff" face="Courier New" size="3"&gt;data&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;=have &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;nway&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;class&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;&lt;FONT face="Courier New" size="3"&gt; acctnum;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;var&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;&lt;FONT face="Courier New" size="3"&gt; yearmonth balance_3 balance_2 balance_1 credit_limit_3 credit_limit_2 credit_limit_1;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;output&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Courier New" size="3"&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;out&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;&lt;FONT face="Courier New" size="3"&gt;=want (&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;DROP&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;&lt;FONT face="Courier New" size="3"&gt; = _FREQ_ _TYPE_) &lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;max&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;&lt;FONT face="Courier New" size="3"&gt;=yearmonth &lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;sum&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;&lt;FONT face="Courier New" size="3"&gt;=balance_3 balance_2 balance_1 credit_limit_3 credit_limit_2 credit_limit_1 ;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Apr 2016 17:23:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Transpose-question/m-p/263944#M57756</guid>
      <dc:creator>dunga</dc:creator>
      <dc:date>2016-04-14T17:23:04Z</dc:date>
    </item>
    <item>
      <title>Re: Transpose question?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Transpose-question/m-p/264077#M57757</link>
      <description>&lt;P&gt;Did you run my code ?&lt;/P&gt;</description>
      <pubDate>Fri, 15 Apr 2016 04:46:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Transpose-question/m-p/264077#M57757</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-04-15T04:46:15Z</dc:date>
    </item>
    <item>
      <title>Re: Transpose question?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Transpose-question/m-p/264097#M57758</link>
      <description>&lt;P&gt;Please show the output from the code and describe how it doesn't meet desired result.&lt;/P&gt;</description>
      <pubDate>Fri, 15 Apr 2016 07:05:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Transpose-question/m-p/264097#M57758</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2016-04-15T07:05:59Z</dc:date>
    </item>
  </channel>
</rss>

