<?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 a variable, and place value of second variable as the value of the transposed variable in SAS Data Management</title>
    <link>https://communities.sas.com/t5/SAS-Data-Management/Transpose-a-variable-and-place-value-of-second-variable-as-the/m-p/460852#M14303</link>
    <description>&lt;P&gt;Hello, I am trying to transpose some data, which, on its face sounds easy. Though&amp;nbsp;please before you grumble at me, know that I have searched around and in the SAS manual and I&amp;nbsp;cant seem to find exactly what I am looking for; the process of discovery is much more important to learning and long-term retention, but in this case I am stumped.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The data are currently in the following format:&lt;/P&gt;&lt;P&gt;StudyID &amp;nbsp; &amp;nbsp; Variable &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;database_value&lt;/P&gt;&lt;P&gt;00001 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;STE_TEST &amp;nbsp; &amp;nbsp;12.1&lt;/P&gt;&lt;P&gt;00002 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;PAC_RES &amp;nbsp; &amp;nbsp; Yes&lt;/P&gt;&lt;P&gt;00003 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;NST_RES &amp;nbsp; &amp;nbsp; 15.6&lt;/P&gt;&lt;P&gt;00003 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;STE_TEST &amp;nbsp; &amp;nbsp;91.2&lt;/P&gt;&lt;P&gt;00004 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;PAC_RES &amp;nbsp; &amp;nbsp; No&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need the data&amp;nbsp;to look like this:&lt;/P&gt;&lt;P&gt;StudyID &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;SPAN&gt;STE_TEST &amp;nbsp; &amp;nbsp;&amp;nbsp;PAC_RES &amp;nbsp; &amp;nbsp; NST_RES&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;00001 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;12.1&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;00002 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Yes&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;00003 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;91.2 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;15.6&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;00004 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; No&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have several (~30) datasets that need&amp;nbsp;transforming all in the same way.&amp;nbsp;An example of one&amp;nbsp;dataset&amp;nbsp;(named albuminresult) shows how the data are currently formatted, which I have&amp;nbsp;converted to a data step using the SAS macro &lt;A href="https://communities.sas.com/t5/SAS-Communities-Library/How-to-create-a-data-step-version-of-your-data-AKA-generate/ta-p/258712" target="_self"&gt;here&lt;/A&gt;.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data WORK.ALBUMINRESULT;
  infile datalines dsd truncover;
  input StudyID:$5. VisitType:$1. Variable:$17. database_value:$30.;
  label StudyID="StudyID" VisitType="VisitType" Variable="Variable" database_value="database_value";
datalines4;
K6002,,LabNo,PED0225
K6004,,ReqdDilution,2
K6048,,ReqdDilution,0
K6073,,ReasDilutNotReqd,n/a
K6076,,ResultmgL,12
K6086,,ReasDilutNotReqd,n/a
K6163,,ReasDilutNotReqd,n/a
K6165,,ReasDilutNotReqd,n/a
K6467,,ResultDate,04MAR2015:0:00:00.00
K6548,,Result,3
;;;;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As you can see from the above examples,&amp;nbsp;values in the column "variable" need to be&amp;nbsp;turned into variables, and the values of the variable "database_value" needs to be the value of the newly created variable.&amp;nbsp;An example of what I need the data to look like (called "need") if the above albumin result dataset were properly formatted is below (data stepped):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data WORK.NEED;
  infile datalines dsd truncover;
  input StudyID:$5. LabNo:$7. ReqdDilution:32. ReasDilutNotReqd:$3. ResultmgL:32. ResultDate:$20. Result:$1.;
  label StudyID="StudyID" LabNo="LabNo" ReqdDilution="ReqdDilution" ReasDilutNotReqd="ReasDilutNotReqd" ResultmgL="ResultmgL" ResultDate="ResultDate" Result="Result";
datalines4;
K6002,PED0225,,,,,
K6004,,2,,,,
K6048,,0,,,,
K6073,,,n/a,,,
K6076,,,,12,,
K6086,,,n/a,,,
K6163,,,n/a,,,
K6165,,,n/a,,,
K6467,,,,,04MAR2015:0:00:00.00,
K6548,,,,,,3
;;;;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Obviously a PROC TRANSPOSE can put the variable values up in the&amp;nbsp;columns, but (1) repeated values also get transposed and (2) I am unsure how to correctly match/tie in the values from the "database_value" variable.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help with even this one dataset would be amazing. But&amp;nbsp;as I mentioned there are ~30 "datasets." Though to be more specific, they are all tables in an Access database and I pull them in using the "libname x&amp;nbsp;Access 'C://example.accdb'; Proc XYZ data=x.tablename;..." route. Moreover, the variable values will be different in each table.&amp;nbsp;Ultimately, the goal is to compare&amp;nbsp;an access database with the incorrectly formatted data with a master database that has the correctly formatted data. So&amp;nbsp;my plan of action is to correctly reformat all of the Access tables into individual SAS datasets, then create a new Access database using PROC COPY, which I have successfully done before. Of course, I am open to suggestions.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you&amp;nbsp;for your help!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I apologize if this me simply missing something elementary.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Jonathan Smith&lt;/P&gt;</description>
    <pubDate>Tue, 08 May 2018 20:45:52 GMT</pubDate>
    <dc:creator>jpsmith</dc:creator>
    <dc:date>2018-05-08T20:45:52Z</dc:date>
    <item>
      <title>Transpose a variable, and place value of second variable as the value of the transposed variable</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Transpose-a-variable-and-place-value-of-second-variable-as-the/m-p/460852#M14303</link>
      <description>&lt;P&gt;Hello, I am trying to transpose some data, which, on its face sounds easy. Though&amp;nbsp;please before you grumble at me, know that I have searched around and in the SAS manual and I&amp;nbsp;cant seem to find exactly what I am looking for; the process of discovery is much more important to learning and long-term retention, but in this case I am stumped.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The data are currently in the following format:&lt;/P&gt;&lt;P&gt;StudyID &amp;nbsp; &amp;nbsp; Variable &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;database_value&lt;/P&gt;&lt;P&gt;00001 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;STE_TEST &amp;nbsp; &amp;nbsp;12.1&lt;/P&gt;&lt;P&gt;00002 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;PAC_RES &amp;nbsp; &amp;nbsp; Yes&lt;/P&gt;&lt;P&gt;00003 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;NST_RES &amp;nbsp; &amp;nbsp; 15.6&lt;/P&gt;&lt;P&gt;00003 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;STE_TEST &amp;nbsp; &amp;nbsp;91.2&lt;/P&gt;&lt;P&gt;00004 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;PAC_RES &amp;nbsp; &amp;nbsp; No&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need the data&amp;nbsp;to look like this:&lt;/P&gt;&lt;P&gt;StudyID &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;SPAN&gt;STE_TEST &amp;nbsp; &amp;nbsp;&amp;nbsp;PAC_RES &amp;nbsp; &amp;nbsp; NST_RES&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;00001 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;12.1&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;00002 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Yes&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;00003 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;91.2 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;15.6&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;00004 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; No&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have several (~30) datasets that need&amp;nbsp;transforming all in the same way.&amp;nbsp;An example of one&amp;nbsp;dataset&amp;nbsp;(named albuminresult) shows how the data are currently formatted, which I have&amp;nbsp;converted to a data step using the SAS macro &lt;A href="https://communities.sas.com/t5/SAS-Communities-Library/How-to-create-a-data-step-version-of-your-data-AKA-generate/ta-p/258712" target="_self"&gt;here&lt;/A&gt;.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data WORK.ALBUMINRESULT;
  infile datalines dsd truncover;
  input StudyID:$5. VisitType:$1. Variable:$17. database_value:$30.;
  label StudyID="StudyID" VisitType="VisitType" Variable="Variable" database_value="database_value";
datalines4;
K6002,,LabNo,PED0225
K6004,,ReqdDilution,2
K6048,,ReqdDilution,0
K6073,,ReasDilutNotReqd,n/a
K6076,,ResultmgL,12
K6086,,ReasDilutNotReqd,n/a
K6163,,ReasDilutNotReqd,n/a
K6165,,ReasDilutNotReqd,n/a
K6467,,ResultDate,04MAR2015:0:00:00.00
K6548,,Result,3
;;;;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As you can see from the above examples,&amp;nbsp;values in the column "variable" need to be&amp;nbsp;turned into variables, and the values of the variable "database_value" needs to be the value of the newly created variable.&amp;nbsp;An example of what I need the data to look like (called "need") if the above albumin result dataset were properly formatted is below (data stepped):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data WORK.NEED;
  infile datalines dsd truncover;
  input StudyID:$5. LabNo:$7. ReqdDilution:32. ReasDilutNotReqd:$3. ResultmgL:32. ResultDate:$20. Result:$1.;
  label StudyID="StudyID" LabNo="LabNo" ReqdDilution="ReqdDilution" ReasDilutNotReqd="ReasDilutNotReqd" ResultmgL="ResultmgL" ResultDate="ResultDate" Result="Result";
datalines4;
K6002,PED0225,,,,,
K6004,,2,,,,
K6048,,0,,,,
K6073,,,n/a,,,
K6076,,,,12,,
K6086,,,n/a,,,
K6163,,,n/a,,,
K6165,,,n/a,,,
K6467,,,,,04MAR2015:0:00:00.00,
K6548,,,,,,3
;;;;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Obviously a PROC TRANSPOSE can put the variable values up in the&amp;nbsp;columns, but (1) repeated values also get transposed and (2) I am unsure how to correctly match/tie in the values from the "database_value" variable.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help with even this one dataset would be amazing. But&amp;nbsp;as I mentioned there are ~30 "datasets." Though to be more specific, they are all tables in an Access database and I pull them in using the "libname x&amp;nbsp;Access 'C://example.accdb'; Proc XYZ data=x.tablename;..." route. Moreover, the variable values will be different in each table.&amp;nbsp;Ultimately, the goal is to compare&amp;nbsp;an access database with the incorrectly formatted data with a master database that has the correctly formatted data. So&amp;nbsp;my plan of action is to correctly reformat all of the Access tables into individual SAS datasets, then create a new Access database using PROC COPY, which I have successfully done before. Of course, I am open to suggestions.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you&amp;nbsp;for your help!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I apologize if this me simply missing something elementary.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Jonathan Smith&lt;/P&gt;</description>
      <pubDate>Tue, 08 May 2018 20:45:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Transpose-a-variable-and-place-value-of-second-variable-as-the/m-p/460852#M14303</guid>
      <dc:creator>jpsmith</dc:creator>
      <dc:date>2018-05-08T20:45:52Z</dc:date>
    </item>
    <item>
      <title>Re: Transpose a variable, and place value of second variable as the value of the transposed variable</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Transpose-a-variable-and-place-value-of-second-variable-as-the/m-p/460856#M14304</link>
      <description>&lt;P&gt;PROC TRANSPOSE does contain a statement to place the data in the columns that you want.&amp;nbsp; Try:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc transpose data=have out=want;&lt;/P&gt;
&lt;P&gt;var database_value;&lt;/P&gt;
&lt;P&gt;id variable;&lt;/P&gt;
&lt;P&gt;by StudyId;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;</description>
      <pubDate>Tue, 08 May 2018 20:57:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Transpose-a-variable-and-place-value-of-second-variable-as-the/m-p/460856#M14304</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2018-05-08T20:57:47Z</dc:date>
    </item>
    <item>
      <title>Re: Transpose a variable, and place value of second variable as the value of the transposed variable</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Transpose-a-variable-and-place-value-of-second-variable-as-the/m-p/460875#M14306</link>
      <description>&lt;P&gt;I may have marked this completed too soon - it appears that for that one table it worked, but for many of the tables being converted, errors pop up (I thought I had tried this, and now remember that&amp;nbsp;it didn't work, at least for me).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Since it is longer, I am attaching another macro-created datastep to provide an example of when it didnt work, and the error log that goes with it when I run it (note: I had to change the extension from ".log" to ".txt").&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any suggestions?&lt;/P&gt;</description>
      <pubDate>Tue, 08 May 2018 22:20:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Transpose-a-variable-and-place-value-of-second-variable-as-the/m-p/460875#M14306</guid>
      <dc:creator>jpsmith</dc:creator>
      <dc:date>2018-05-08T22:20:33Z</dc:date>
    </item>
    <item>
      <title>Re: Transpose a variable, and place value of second variable as the value of the transposed variable</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Transpose-a-variable-and-place-value-of-second-variable-as-the/m-p/460880#M14307</link>
      <description>&lt;P&gt;You'll have to actually show the results.&amp;nbsp; Few people will trust an attachment.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The most common problem with this type of program is a data issue, not a programming issue.&amp;nbsp; What should the result be, if there are two observations that both have the same value for StudyID and Variable?&amp;nbsp; You need to decide how to handle that situation when there is only one spot available to hold two values.&lt;/P&gt;</description>
      <pubDate>Tue, 08 May 2018 22:38:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Transpose-a-variable-and-place-value-of-second-variable-as-the/m-p/460880#M14307</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2018-05-08T22:38:51Z</dc:date>
    </item>
    <item>
      <title>Re: Transpose a variable, and place value of second variable as the value of the transposed variable</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Transpose-a-variable-and-place-value-of-second-variable-as-the/m-p/460894#M14308</link>
      <description>&lt;P&gt;Thank you so much for your quick response - it does seem to be a data issue, your suggested code works perfectly. I had gotten close on my own so&amp;nbsp;I cant thank you enough for helping me figure this out!&lt;/P&gt;</description>
      <pubDate>Wed, 09 May 2018 00:49:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Transpose-a-variable-and-place-value-of-second-variable-as-the/m-p/460894#M14308</guid>
      <dc:creator>jpsmith</dc:creator>
      <dc:date>2018-05-09T00:49:37Z</dc:date>
    </item>
    <item>
      <title>Re: Transpose a variable, and place value of second variable as the value of the transposed variable</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Transpose-a-variable-and-place-value-of-second-variable-as-the/m-p/462995#M14406</link>
      <description>&lt;P&gt;Just to note, after looking into the SAS documentation a bit more, adding a LET&amp;nbsp;statement in the proc transpose line solved the specific issue of duplicates I was referring to in my follow up. It may not solve&amp;nbsp;other people's specific situation, but a good tool to have in the toolbar. Thanks again for your help!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Jonathan&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If others are&amp;nbsp;interested, more info on the LET statement and dealing with&amp;nbsp;duplicate values in proc transpose:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/proc/65145/HTML/default/viewer.htm#p1r2tjnp8ewe3sn1acnpnrs3xbad.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/proc/65145/HTML/default/viewer.htm#p1r2tjnp8ewe3sn1acnpnrs3xbad.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/proc/65145/HTML/default/viewer.htm#n0mwa670j36v2an1ojkae8e3d8sz.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/proc/65145/HTML/default/viewer.htm#n0mwa670j36v2an1ojkae8e3d8sz.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 17 May 2018 12:57:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Transpose-a-variable-and-place-value-of-second-variable-as-the/m-p/462995#M14406</guid>
      <dc:creator>jpsmith</dc:creator>
      <dc:date>2018-05-17T12:57:49Z</dc:date>
    </item>
  </channel>
</rss>

