<?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: How can I combine 2 columns into one? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-can-I-combine-2-columns-into-one/m-p/5822#M5821</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm not familiar with JMP but isn't the first condition checking if the cell in A is blank versus missing?&lt;/P&gt;&lt;P&gt;SAS has a keyword, missing, does JMP have the same?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ie &lt;/P&gt;&lt;P&gt;If(is missing(:Column A) , :Column A, :Column B)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 23 Oct 2012 15:09:54 GMT</pubDate>
    <dc:creator>reeza</dc:creator>
    <dc:date>2012-10-23T15:09:54Z</dc:date>
    <item>
      <title>How can I combine 2 columns into one?</title>
      <link>https://community.jmp.com/t5/Discussions/How-can-I-combine-2-columns-into-one/m-p/5820#M5819</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;I would like to combine two columns into one. My data looks like the table below where "." represents missing data. I would like to make a column which resembles Column C.&lt;/P&gt;&lt;TABLE border="1" class="jiveBorder" height="144" style="width: 52px; height: 57px; border: #000000 1px solid;" width="109"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH style="TEXT-ALIGN: center; PADDING-BOTTOM: 2px; BACKGROUND-COLOR: #6690bc; PADDING-LEFT: 2px; PADDING-RIGHT: 2px; COLOR: #ffffff; PADDING-TOP: 2px;"&gt;&lt;STRONG&gt;Column A&lt;/STRONG&gt;&lt;/TH&gt;&lt;TH style="TEXT-ALIGN: center; PADDING-BOTTOM: 2px; BACKGROUND-COLOR: #6690bc; PADDING-LEFT: 2px; PADDING-RIGHT: 2px; COLOR: #ffffff; PADDING-TOP: 2px;"&gt;&lt;STRONG&gt;Column B&lt;/STRONG&gt;&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="TEXT-ALIGN: center; PADDING-BOTTOM: 2px; PADDING-LEFT: 2px; PADDING-RIGHT: 2px; PADDING-TOP: 2px;"&gt;.&lt;/TD&gt;&lt;TD style="TEXT-ALIGN: center; PADDING-BOTTOM: 2px; PADDING-LEFT: 2px; PADDING-RIGHT: 2px; PADDING-TOP: 2px;"&gt;2013&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="TEXT-ALIGN: center; PADDING-BOTTOM: 2px; PADDING-LEFT: 2px; PADDING-RIGHT: 2px; PADDING-TOP: 2px;"&gt;.&lt;/TD&gt;&lt;TD style="TEXT-ALIGN: center; PADDING-BOTTOM: 2px; PADDING-LEFT: 2px; PADDING-RIGHT: 2px; PADDING-TOP: 2px;"&gt;2014&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="TEXT-ALIGN: center; PADDING-BOTTOM: 2px; PADDING-LEFT: 2px; PADDING-RIGHT: 2px; PADDING-TOP: 2px;"&gt;2016&lt;/TD&gt;&lt;TD style="TEXT-ALIGN: center; PADDING-BOTTOM: 2px; PADDING-LEFT: 2px; PADDING-RIGHT: 2px; PADDING-TOP: 2px;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="TEXT-ALIGN: center; PADDING-BOTTOM: 2px; PADDING-LEFT: 2px; PADDING-RIGHT: 2px; PADDING-TOP: 2px;"&gt;2017&lt;/TD&gt;&lt;TD style="TEXT-ALIGN: center; PADDING-BOTTOM: 2px; PADDING-LEFT: 2px; PADDING-RIGHT: 2px; PADDING-TOP: 2px;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;TABLE border="1" class="jiveBorder" height="144" style="width: 54px; height: 84px; border: #000000 1px solid;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;"&gt;&lt;STRONG&gt;Column C&lt;/STRONG&gt;&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;&lt;P&gt;2013&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;2014&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;2016&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;2017&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Oct 2012 14:21:55 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-can-I-combine-2-columns-into-one/m-p/5820#M5819</guid>
      <dc:creator>hacketkm</dc:creator>
      <dc:date>2012-10-23T14:21:55Z</dc:date>
    </item>
    <item>
      <title>Re: How can I combine 2 columns into one?</title>
      <link>https://community.jmp.com/t5/Discussions/How-can-I-combine-2-columns-into-one/m-p/5821#M5820</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So far I have tried adding a new column with the formula: If( :Column A != "", :Column A, :Column B) but this doesn't work and I'm not sure why. It fills in the values from Column A but not from Column B. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Oct 2012 14:34:34 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-can-I-combine-2-columns-into-one/m-p/5821#M5820</guid>
      <dc:creator>hacketkm</dc:creator>
      <dc:date>2012-10-23T14:34:34Z</dc:date>
    </item>
    <item>
      <title>Re: How can I combine 2 columns into one?</title>
      <link>https://community.jmp.com/t5/Discussions/How-can-I-combine-2-columns-into-one/m-p/5822#M5821</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm not familiar with JMP but isn't the first condition checking if the cell in A is blank versus missing?&lt;/P&gt;&lt;P&gt;SAS has a keyword, missing, does JMP have the same?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ie &lt;/P&gt;&lt;P&gt;If(is missing(:Column A) , :Column A, :Column B)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Oct 2012 15:09:54 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-can-I-combine-2-columns-into-one/m-p/5822#M5821</guid>
      <dc:creator>reeza</dc:creator>
      <dc:date>2012-10-23T15:09:54Z</dc:date>
    </item>
    <item>
      <title>Re: How can I combine 2 columns into one?</title>
      <link>https://community.jmp.com/t5/Discussions/How-can-I-combine-2-columns-into-one/m-p/5823#M5822</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you, I was able to get the formula to work using Is Missing().&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Oct 2012 16:10:24 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-can-I-combine-2-columns-into-one/m-p/5823#M5822</guid>
      <dc:creator>hacketkm</dc:creator>
      <dc:date>2012-10-23T16:10:24Z</dc:date>
    </item>
  </channel>
</rss>

