<?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: Combine two column in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Combine-two-column/m-p/845307#M334175</link>
    <description>Without transpose statement, pls write code to solve</description>
    <pubDate>Sun, 20 Nov 2022 03:49:54 GMT</pubDate>
    <dc:creator>Tejaswini3</dc:creator>
    <dc:date>2022-11-20T03:49:54Z</dc:date>
    <item>
      <title>Combine two column</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Combine-two-column/m-p/845266#M334154</link>
      <description>I want to combine petest and desc coloumn one below the other&lt;BR /&gt;E g , &lt;BR /&gt;Abdominal&lt;BR /&gt;No&lt;BR /&gt;Yes&lt;BR /&gt;Cardiovascular system&lt;BR /&gt;No&lt;BR /&gt;Yes</description>
      <pubDate>Sat, 19 Nov 2022 17:12:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Combine-two-column/m-p/845266#M334154</guid>
      <dc:creator>Tejaswini3</dc:creator>
      <dc:date>2022-11-19T17:12:50Z</dc:date>
    </item>
    <item>
      <title>Re: Combine two column</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Combine-two-column/m-p/845272#M334157</link>
      <description>&lt;P&gt;Looks like stacking cols ... this is available as a point and click task in Studio under Tasks-&amp;gt;Data-&amp;gt;Stack/Split Columns.&lt;/P&gt;
&lt;P&gt;Generates something like this:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data work.TestData;  
   input Col1$ Col2$ Col3 $;  
   datalines;  
A B C 
D E F 
; 
run; 
 
data work.__tmp__;  
	set WORK.TESTDATA;  
	_Case_=_n_;  
run;  
  
proc transpose data=work.__tmp__ out=work.TestOut(drop=_Label_   
		rename=(col1=StackedCol)) name=_Level_;  
	var Col1 Col2;  
	by _Case_;  
run;  
  
proc delete data=WORK.__tmp__;  
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 19 Nov 2022 18:45:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Combine-two-column/m-p/845272#M334157</guid>
      <dc:creator>fja</dc:creator>
      <dc:date>2022-11-19T18:45:56Z</dc:date>
    </item>
    <item>
      <title>Re: Combine two column</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Combine-two-column/m-p/845274#M334158</link>
      <description>&lt;P&gt;Should this be a report?&lt;/P&gt;
&lt;P&gt;And do not post pictures of data. Ideally, post data step code (with DATALINES) to create a copy of your dataset.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 19 Nov 2022 19:01:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Combine-two-column/m-p/845274#M334158</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2022-11-19T19:01:10Z</dc:date>
    </item>
    <item>
      <title>Re: Combine two column</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Combine-two-column/m-p/845306#M334174</link>
      <description>Can you please write full code and let me know</description>
      <pubDate>Sun, 20 Nov 2022 03:48:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Combine-two-column/m-p/845306#M334174</guid>
      <dc:creator>Tejaswini3</dc:creator>
      <dc:date>2022-11-20T03:48:43Z</dc:date>
    </item>
    <item>
      <title>Re: Combine two column</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Combine-two-column/m-p/845307#M334175</link>
      <description>Without transpose statement, pls write code to solve</description>
      <pubDate>Sun, 20 Nov 2022 03:49:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Combine-two-column/m-p/845307#M334175</guid>
      <dc:creator>Tejaswini3</dc:creator>
      <dc:date>2022-11-20T03:49:54Z</dc:date>
    </item>
    <item>
      <title>Re: Combine two column</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Combine-two-column/m-p/845320#M334181</link>
      <description>&lt;P&gt;If you need someone to do your work for you, you should hire a consultant.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And you have neither answered my question, nor provided usable data.&lt;/P&gt;</description>
      <pubDate>Sun, 20 Nov 2022 08:32:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Combine-two-column/m-p/845320#M334181</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2022-11-20T08:32:16Z</dc:date>
    </item>
    <item>
      <title>Re: Combine two column</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Combine-two-column/m-p/845359#M334201</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/416543"&gt;@Tejaswini3&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;Without transpose statement, pls write code to solve&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Why is that? Than you needed to detail your problem a bit. ... let's say just to motivate people. &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Err ... being with it: My observation is that you keep on asking the same questions over and over (e.g.&amp;nbsp;&lt;A href="https://communities.sas.com/t5/SAS-Programming/Combine-two-column-with-condition/m-p/817509" target="_self"&gt;here&lt;/A&gt;&amp;nbsp;and&amp;nbsp;&lt;A href="https://communities.sas.com/t5/SAS-Programming/COmbine-two-colomn-group-wise/m-p/845327#M334185" target="_self"&gt;here&lt;/A&gt;&amp;nbsp;). You got answered there, though you have neither marked these threads as solved nor detailed what was missing to an acceptable solution. ... sooo, could you help us a bit, please?&lt;/P&gt;</description>
      <pubDate>Sun, 20 Nov 2022 20:45:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Combine-two-column/m-p/845359#M334201</guid>
      <dc:creator>fja</dc:creator>
      <dc:date>2022-11-20T20:45:25Z</dc:date>
    </item>
  </channel>
</rss>

