<?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 Transpose rows to columns w/ duplicates in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/Transpose-rows-to-columns-w-duplicates/m-p/777183#M31442</link>
    <description>&lt;P&gt;Hi,&lt;BR /&gt;I have data like this&lt;BR /&gt;&lt;BR /&gt;Date&lt;BR /&gt;01oct2021&lt;BR /&gt;10oct2021&lt;BR /&gt;05oct2021&lt;BR /&gt;11oct2021&lt;BR /&gt;01oct2021&lt;BR /&gt;05oct2021&lt;BR /&gt;10oct2021&lt;BR /&gt;&lt;BR /&gt;It contain duplicate values.&lt;BR /&gt;I need to transpose in row manner. For example,&lt;BR /&gt;&lt;BR /&gt;I want&lt;BR /&gt;Date 01oct2021 05oct2021 10oct2021&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;/P&gt;</description>
    <pubDate>Mon, 01 Nov 2021 11:15:19 GMT</pubDate>
    <dc:creator>Pooja98</dc:creator>
    <dc:date>2021-11-01T11:15:19Z</dc:date>
    <item>
      <title>Transpose rows to columns w/ duplicates</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Transpose-rows-to-columns-w-duplicates/m-p/777183#M31442</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;I have data like this&lt;BR /&gt;&lt;BR /&gt;Date&lt;BR /&gt;01oct2021&lt;BR /&gt;10oct2021&lt;BR /&gt;05oct2021&lt;BR /&gt;11oct2021&lt;BR /&gt;01oct2021&lt;BR /&gt;05oct2021&lt;BR /&gt;10oct2021&lt;BR /&gt;&lt;BR /&gt;It contain duplicate values.&lt;BR /&gt;I need to transpose in row manner. For example,&lt;BR /&gt;&lt;BR /&gt;I want&lt;BR /&gt;Date 01oct2021 05oct2021 10oct2021&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Mon, 01 Nov 2021 11:15:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Transpose-rows-to-columns-w-duplicates/m-p/777183#M31442</guid>
      <dc:creator>Pooja98</dc:creator>
      <dc:date>2021-11-01T11:15:19Z</dc:date>
    </item>
    <item>
      <title>Re: Proc transpose</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Transpose-rows-to-columns-w-duplicates/m-p/777187#M31443</link>
      <description>&lt;P&gt;Usually this is not a good idea, but here you are&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
input Date :date9.;
format Date date9.;
datalines;
01oct2021
10oct2021
05oct2021
11oct2021
01oct2021
05oct2021
10oct2021
;

proc sort data = have nodupkey;
   by Date;
run;

proc transpose data = have out = want prefix = d;
   var Date;
run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 29 Oct 2021 08:37:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Transpose-rows-to-columns-w-duplicates/m-p/777187#M31443</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2021-10-29T08:37:20Z</dc:date>
    </item>
    <item>
      <title>Re: Proc transpose</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Transpose-rows-to-columns-w-duplicates/m-p/777228#M31444</link>
      <description>&lt;P&gt;So,&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/305675"&gt;@Pooja98&lt;/a&gt;&amp;nbsp;as you can see from the reply by&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/31304"&gt;@PeterClemmensen&lt;/a&gt;&amp;nbsp;this is easy to do.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However, usually its not a good thing to do because it makes the next steps (the analysis, or the report) more difficult. Would you be kind enough to tell us what the next steps (analysis or report) will be?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 29 Oct 2021 10:22:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Transpose-rows-to-columns-w-duplicates/m-p/777228#M31444</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2021-10-29T10:22:12Z</dc:date>
    </item>
    <item>
      <title>Re: Proc transpose</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Transpose-rows-to-columns-w-duplicates/m-p/777364#M31460</link>
      <description>I'd recommend adding an IDLABEL option here and have the label be the date.</description>
      <pubDate>Fri, 29 Oct 2021 17:10:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Transpose-rows-to-columns-w-duplicates/m-p/777364#M31460</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2021-10-29T17:10:54Z</dc:date>
    </item>
  </channel>
</rss>

