<?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: Proc transpose help needed in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Proc-transpose-help-needed/m-p/830561#M328189</link>
    <description>&lt;P&gt;Thank you so much ! it worked !&lt;/P&gt;</description>
    <pubDate>Fri, 26 Aug 2022 12:51:25 GMT</pubDate>
    <dc:creator>r3570</dc:creator>
    <dc:date>2022-08-26T12:51:25Z</dc:date>
    <item>
      <title>Proc transpose help needed</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-transpose-help-needed/m-p/830554#M328184</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have a dataset as below:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="r3570_0-1661516782241.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/74747i06C1C8FE686B72D3/image-size/medium?v=v2&amp;amp;px=400" role="button" title="r3570_0-1661516782241.png" alt="r3570_0-1661516782241.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;I need to transpose the data as below subject wise:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="r3570_1-1661516953298.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/74748iC2D9A20EDB675B12/image-size/medium?v=v2&amp;amp;px=400" role="button" title="r3570_1-1661516953298.png" alt="r3570_1-1661516953298.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Any help ?&lt;/P&gt;</description>
      <pubDate>Fri, 26 Aug 2022 12:29:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-transpose-help-needed/m-p/830554#M328184</guid>
      <dc:creator>r3570</dc:creator>
      <dc:date>2022-08-26T12:29:45Z</dc:date>
    </item>
    <item>
      <title>Re: Proc transpose help needed</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-transpose-help-needed/m-p/830556#M328186</link>
      <description>&lt;P&gt;Use PROC TRANSPOSE.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc transpose data=have out=want(drop=_name_) ;
  by usubjid;
  id vstestcd;
  var vsorres;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Note that if you will collect multiple BP readings per subject then you will probably also need to another variable to in the original dataset you can use in the BY statement so that PROC TRANSPOSE knows which pairs of SYS and DIA readings to keep together on the same output observation.&lt;/P&gt;</description>
      <pubDate>Fri, 26 Aug 2022 12:37:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-transpose-help-needed/m-p/830556#M328186</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2022-08-26T12:37:36Z</dc:date>
    </item>
    <item>
      <title>Re: Proc transpose help needed</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-transpose-help-needed/m-p/830561#M328189</link>
      <description>&lt;P&gt;Thank you so much ! it worked !&lt;/P&gt;</description>
      <pubDate>Fri, 26 Aug 2022 12:51:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-transpose-help-needed/m-p/830561#M328189</guid>
      <dc:creator>r3570</dc:creator>
      <dc:date>2022-08-26T12:51:25Z</dc:date>
    </item>
  </channel>
</rss>

