<?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 Data Set Option in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Data-Set-Option/m-p/120023#M33048</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I just did a data set option but I don't want the data to be placed on different rows. I have 12 tables that all have 1 row with 4 columns of monetary data. I did the following data step:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data all; set t1 t2 t3 t4 t5 t6 t7 t8 t9 t10 t11 t12;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;my all table now has 12 rows and 16 columns. How can I get it to have 1 row and 16 columns? All the columns have different names so I know what value came from where. Should I do a proc transpose or maybe I should just do a proc sql and create a table?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 09 Jan 2013 15:28:51 GMT</pubDate>
    <dc:creator>tmm</dc:creator>
    <dc:date>2013-01-09T15:28:51Z</dc:date>
    <item>
      <title>Data Set Option</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Data-Set-Option/m-p/120023#M33048</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I just did a data set option but I don't want the data to be placed on different rows. I have 12 tables that all have 1 row with 4 columns of monetary data. I did the following data step:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data all; set t1 t2 t3 t4 t5 t6 t7 t8 t9 t10 t11 t12;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;my all table now has 12 rows and 16 columns. How can I get it to have 1 row and 16 columns? All the columns have different names so I know what value came from where. Should I do a proc transpose or maybe I should just do a proc sql and create a table?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jan 2013 15:28:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Data-Set-Option/m-p/120023#M33048</guid>
      <dc:creator>tmm</dc:creator>
      <dc:date>2013-01-09T15:28:51Z</dc:date>
    </item>
    <item>
      <title>Re: Data Set Option</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Data-Set-Option/m-p/120024#M33049</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The SET statement basically tells SAS to add the data from the separate data sets after each other.&lt;/P&gt;&lt;P&gt;It sounds like you may have wanted to use MERGE&amp;nbsp; instead of set.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jan 2013 15:44:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Data-Set-Option/m-p/120024#M33049</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2013-01-09T15:44:49Z</dc:date>
    </item>
    <item>
      <title>Re: Data Set Option</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Data-Set-Option/m-p/120025#M33050</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Yep. I needed a merge. Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jan 2013 16:07:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Data-Set-Option/m-p/120025#M33050</guid>
      <dc:creator>tmm</dc:creator>
      <dc:date>2013-01-09T16:07:37Z</dc:date>
    </item>
    <item>
      <title>Re: Data Set Option</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Data-Set-Option/m-p/120026#M33051</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could use:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;data all;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt; set t1;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt; set &lt;/SPAN&gt;t2;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt; set &lt;/SPAN&gt;t3;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt; set t4;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt; set t5;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt; set t6;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt; set t7;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt; set t8;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt; set t9;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt; set t10;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt; set t11;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt; set t12;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jan 2013 16:09:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Data-Set-Option/m-p/120026#M33051</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2013-01-09T16:09:19Z</dc:date>
    </item>
  </channel>
</rss>

