<?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 array question in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Transpose-array-question/m-p/193480#M48599</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Post the full proc transpose step that you ran. Given the output you got, I'd presume that it includes a BY statement.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 06 Mar 2015 16:16:43 GMT</pubDate>
    <dc:creator>art297</dc:creator>
    <dc:date>2015-03-06T16:16:43Z</dc:date>
    <item>
      <title>Transpose array question</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Transpose-array-question/m-p/193467#M48586</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello:&lt;/P&gt;&lt;P&gt;Could someone please explain what Q: is? &lt;/P&gt;&lt;P&gt;what is ne&amp;nbsp; . ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks &lt;/P&gt;&lt;P&gt;Much appreciated&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data transposed;set base;&lt;/P&gt;&lt;PRE style="font-family: Monaco, Menlo, Consolas, 'Courier New', monospace; padding: 9.5px; margin: 1.5em 0; color: #333333; border-left-width: 1px; border-top-color: #cccccc; border-right-color: #cccccc; border-bottom-color: #cccccc; background-color: #f5f5f5;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; array Qtr{3} Q:;&lt;/PRE&gt;&lt;PRE style="font-family: Monaco, Menlo, Consolas, 'Courier New', monospace; padding: 9.5px; margin: 1.5em 0; color: #333333; border-left-width: 1px; border-top-color: #cccccc; border-right-color: #cccccc; border-bottom-color: #cccccc; background-color: #f5f5f5;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; do i = 1 to 3;Period = cat('Qtr',i);Amount = Qtr{i} ;output;end;&lt;/PRE&gt;&lt;PRE style="font-family: Monaco, Menlo, Consolas, 'Courier New', monospace; padding: 9.5px; margin: 1.5em 0; color: #333333; border-left-width: 1px; border-top-color: #cccccc; border-right-color: #cccccc; border-bottom-color: #cccccc; background-color: #f5f5f5;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; drop Q1:Q3;&lt;/PRE&gt;&lt;PRE style="font-family: Monaco, Menlo, Consolas, 'Courier New', monospace; padding: 9.5px; margin: 1.5em 0; color: #333333; border-left-width: 1px; border-top-color: #cccccc; border-right-color: #cccccc; border-bottom-color: #cccccc; background-color: #f5f5f5;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if Amount ne .;&lt;/PRE&gt;&lt;PRE style="font-family: Monaco, Menlo, Consolas, 'Courier New', monospace; padding: 9.5px; margin: 1.5em 0; color: #333333; border-left-width: 1px; border-top-color: #cccccc; border-right-color: #cccccc; border-bottom-color: #cccccc; background-color: #f5f5f5;"&gt;run; &lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Mar 2015 22:06:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Transpose-array-question/m-p/193467#M48586</guid>
      <dc:creator>Luffy</dc:creator>
      <dc:date>2015-03-03T22:06:24Z</dc:date>
    </item>
    <item>
      <title>Re: Transpose array question</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Transpose-array-question/m-p/193468#M48587</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE __jive_macro_name="quote" class="jive_text_macro jive_macro_quote"&gt;&lt;BR /&gt;
&lt;P&gt;Could someone please explain what Q: is?&lt;/P&gt;


&lt;/PRE&gt;&lt;P&gt;In general &lt;STRONG&gt;colon&lt;/STRONG&gt; ( &lt;STRONG&gt;:&lt;/STRONG&gt; ) is used to separate the lower and upper bounds of an array’s dimension.&lt;/P&gt;&lt;P&gt;but in your example it has another purpose which is dealing with unknown numbers of variables after the transposing.&lt;/P&gt;&lt;P&gt;By default, PROC TRANSPOSE names these variables Col1, Col2, Col3...up to the maximum.&lt;/P&gt;&lt;P&gt;So you can process the various Col# variables using an ARRAY statement like&amp;nbsp;&amp;nbsp;&amp;nbsp; array Qtr{3} col:;&lt;/P&gt;&lt;P&gt;but it seam that in the PROC TRANSPOSE he added prefix=Q, so he changed col: to Q:&lt;/P&gt;&lt;P&gt;So it is not general syntax, but specific use.&lt;/P&gt;&lt;PRE __jive_macro_name="quote" class="jive_text_macro jive_macro_quote"&gt;what is ne&amp;nbsp; . ?&lt;/PRE&gt;&lt;P&gt;NE is Mnemonic Equivalent to the symbol ^=&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ne . &lt;/STRONG&gt;&amp;nbsp; mean if not equal to null, mean if not missing for example.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Mar 2015 02:27:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Transpose-array-question/m-p/193468#M48587</guid>
      <dc:creator>mohamed_zaki</dc:creator>
      <dc:date>2015-03-04T02:27:48Z</dc:date>
    </item>
    <item>
      <title>Re: Transpose array question</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Transpose-array-question/m-p/193469#M48588</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Q: is a shorthand notation to include all variables that start with Q, in this case Q1, Q2, Q3&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ne =&amp;gt; Not Equal&lt;/P&gt;&lt;P&gt;. =&amp;gt; missing&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Not equal to missing&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Mar 2015 03:28:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Transpose-array-question/m-p/193469#M48588</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2015-03-04T03:28:49Z</dc:date>
    </item>
    <item>
      <title>Re: Transpose array question</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Transpose-array-question/m-p/193470#M48589</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.sas.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt; &lt;/P&gt;&lt;P&gt;I just started using SAS and was learning about it. I probably will be asking lots of basic questions.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Mar 2015 16:31:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Transpose-array-question/m-p/193470#M48589</guid>
      <dc:creator>Luffy</dc:creator>
      <dc:date>2015-03-04T16:31:56Z</dc:date>
    </item>
    <item>
      <title>Re: Transpose array question</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Transpose-array-question/m-p/193471#M48590</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.sas.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt; &lt;/P&gt;&lt;P&gt;I just started using SAS and was learning about it. I probably will be asking lots of basic questions.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Mar 2015 16:32:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Transpose-array-question/m-p/193471#M48590</guid>
      <dc:creator>Luffy</dc:creator>
      <dc:date>2015-03-04T16:32:58Z</dc:date>
    </item>
    <item>
      <title>Re: Transpose array question</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Transpose-array-question/m-p/193472#M48591</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks guys&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then what about this..&lt;/P&gt;&lt;P&gt;proc transpose data = base out = transposed&lt;/P&gt;&lt;P&gt;&amp;nbsp; (rename=(Col1=Amount) where=(Amount ne .)) name=Period;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;shouldn't col2 be amount?? (In the transposed table Col1 is period and col2 is amount)&amp;nbsp; and what is name = Period in this? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Abhinav Shori&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Mar 2015 22:26:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Transpose-array-question/m-p/193472#M48591</guid>
      <dc:creator>Luffy</dc:creator>
      <dc:date>2015-03-05T22:26:15Z</dc:date>
    </item>
    <item>
      <title>Re: Transpose array question</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Transpose-array-question/m-p/193473#M48592</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It's hard to know what COL1 and COL2 since you didn't post BASE or the rest of the PROC TRANSPOSE statements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NAME=PERIOD changes the name of the name variable (_NAME_) to PERIOD.&amp;nbsp; There is also a similar option, LABEL=,&amp;nbsp; to change the name of the label variable (_LABEL_)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Mar 2015 22:41:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Transpose-array-question/m-p/193473#M48592</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2015-03-05T22:41:43Z</dc:date>
    </item>
    <item>
      <title>Re: Transpose array question</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Transpose-array-question/m-p/193474#M48593</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;IMG class="jiveImage" src="http://www.analyticsvidhya.com/wp-content/uploads/2013/11/transpose-1.jpg" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.sas.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt; and this is the table&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Mar 2015 22:44:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Transpose-array-question/m-p/193474#M48593</guid>
      <dc:creator>Luffy</dc:creator>
      <dc:date>2015-03-05T22:44:10Z</dc:date>
    </item>
    <item>
      <title>Re: Transpose array question</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Transpose-array-question/m-p/193475#M48594</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You need to supply some example data, in datastep form, for others to understand what you are doing and asking.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regardless, I'm responding to your initial post. Q1:Q3 is an error that I'm surprised SAS ignores. I presume the coder meant to use Q1-Q3 to drop Q1, Q2, and Q3. However, as written, it will drop any variable that start with Q1, as well as the variable Q3.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Mar 2015 22:59:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Transpose-array-question/m-p/193475#M48594</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2015-03-05T22:59:39Z</dc:date>
    </item>
    <item>
      <title>Re: Transpose array question</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Transpose-array-question/m-p/193476#M48595</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your code produces:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Period Amount Col2&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;q1&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 3&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 32&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;q2&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 134&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 23&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;q3&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 12&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 24&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is the table you showed, labeled transpose, what you were expecting?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Mar 2015 23:14:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Transpose-array-question/m-p/193476#M48595</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2015-03-05T23:14:32Z</dc:date>
    </item>
    <item>
      <title>Re: Transpose array question</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Transpose-array-question/m-p/193477#M48596</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE __jive_macro_name="quote" class="jive_text_macro jive_macro_quote" modifiedtitle="true"&gt;
&lt;P&gt;Arthur Tabachneck wrote:&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;. Q1:Q3 is an error that I'm surprised SAS ignores. &lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;Why do you think that is or should be an error?&amp;nbsp; As you state it drops all variables that start with Q1 and the variable Q3. I don't think SAS considers the fact only one variable Q1 starts with Q1. The only thing that looks odd to us perhaps is that there is no space between : and Q3, but non is needed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Mar 2015 23:32:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Transpose-array-question/m-p/193477#M48596</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2015-03-05T23:32:47Z</dc:date>
    </item>
    <item>
      <title>Re: Transpose array question</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Transpose-array-question/m-p/193478#M48597</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;@Arthur Tabachneck&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the solution you wrote was what I had expected but the solution I got is shown in table (transposed, above).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Mar 2015 16:05:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Transpose-array-question/m-p/193478#M48597</guid>
      <dc:creator>Luffy</dc:creator>
      <dc:date>2015-03-06T16:05:25Z</dc:date>
    </item>
    <item>
      <title>Re: Transpose array question</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Transpose-array-question/m-p/193479#M48598</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You must also have BY CUST;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You need to show your code, always show the code.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Mar 2015 16:13:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Transpose-array-question/m-p/193479#M48598</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2015-03-06T16:13:41Z</dc:date>
    </item>
    <item>
      <title>Re: Transpose array question</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Transpose-array-question/m-p/193480#M48599</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Post the full proc transpose step that you ran. Given the output you got, I'd presume that it includes a BY statement.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Mar 2015 16:16:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Transpose-array-question/m-p/193480#M48599</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2015-03-06T16:16:43Z</dc:date>
    </item>
    <item>
      <title>Re: Transpose array question</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Transpose-array-question/m-p/193481#M48600</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;DN: I stand corrected! &lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px; background-color: #ffffff;"&gt;Q1:Q3 is definitely not an error. However, given that the same syntax would represent a range in Excel, I have to wonder how often it has been incorrectly used in SAS code.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Mar 2015 16:35:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Transpose-array-question/m-p/193481#M48600</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2015-03-06T16:35:09Z</dc:date>
    </item>
    <item>
      <title>Re: Transpose array question</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Transpose-array-question/m-p/193482#M48601</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;proc transpose data = base out = transposed &lt;/P&gt;&lt;P&gt;&amp;nbsp; (rename=(Col1=Amount) where=(Amount ne .)) name=Period;&lt;/P&gt;&lt;PRE style="font-family: Monaco, Menlo, Consolas, 'Courier New', monospace; padding: 9.5px; margin: 1.5em 0; color: #333333; border-left-width: 1px; border-top-color: #cccccc; border-right-color: #cccccc; border-bottom-color: #cccccc; background-color: #f5f5f5;"&gt;by cust; run;&lt;/PRE&gt;&lt;P&gt;this is the complete code&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Mar 2015 16:46:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Transpose-array-question/m-p/193482#M48601</guid>
      <dc:creator>Luffy</dc:creator>
      <dc:date>2015-03-06T16:46:23Z</dc:date>
    </item>
    <item>
      <title>Re: Transpose array question</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Transpose-array-question/m-p/193483#M48602</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;proc transpose data = base out = transposed &lt;/P&gt;&lt;P&gt;&amp;nbsp; (rename=(Col1=Amount) where=(Amount ne .)) name=Period;&lt;/P&gt;&lt;PRE style="font-family: Monaco, Menlo, Consolas, 'Courier New', monospace; padding: 9.5px; margin: 1.5em 0; color: #333333; border-left-width: 1px; border-top-color: #cccccc; border-right-color: #cccccc; border-bottom-color: #cccccc; background-color: #f5f5f5;"&gt;by cust; run;&lt;/PRE&gt;&lt;P&gt;complete code&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Mar 2015 16:52:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Transpose-array-question/m-p/193483#M48602</guid>
      <dc:creator>Luffy</dc:creator>
      <dc:date>2015-03-06T16:52:35Z</dc:date>
    </item>
    <item>
      <title>Re: Transpose array question</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Transpose-array-question/m-p/193484#M48603</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You would get the result I had posted if you delete the statement:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;by cust;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Mar 2015 17:24:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Transpose-array-question/m-p/193484#M48603</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2015-03-06T17:24:03Z</dc:date>
    </item>
  </channel>
</rss>

