<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
     xmlns:admin="http://webns.net/mvcb/"
     xmlns:content="http://purl.org/rss/1.0/modules/content/"
     xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
	<channel> 

	<title>Comments on: Is there a regexp for Excel?</title>
	<link>http://ask.metafilter.com/32380/Is-there-a-regexp-for-Excel/</link>
	<description>Comments on Ask MetaFilter post Is there a regexp for Excel?</description>
	<pubDate>Thu, 09 Feb 2006 08:53:43 -0800</pubDate>
	<lastBuildDate>Thu, 09 Feb 2006 08:53:43 -0800</lastBuildDate>
	<language>en-us</language>
	<docs>http://blogs.law.harvard.edu/tech/rss</docs>
	<ttl>60</ttl>

	<item>
		<title>Question: Is there a regexp for Excel?</title>
		<link>http://ask.metafilter.com/32380/Is-there-a-regexp-for-Excel</link>	
		<description>ExcelFilter:  How do I convert a column of names formatted &lt;b&gt;&lt;i&gt;Smith, John&lt;/i&gt;&lt;/b&gt; into &lt;b&gt;&lt;i&gt;John Smith&lt;/i&gt;&lt;/b&gt;.  Feasible?</description>
		<guid isPermaLink="false">post:ask.metafilter.com,2006:site.32380</guid>
		<pubDate>Thu, 09 Feb 2006 08:49:07 -0800</pubDate>
		<dc:creator>furtive</dc:creator>
		
			<category>excel</category>
		
			<category>microsoft</category>
		
			<category>spreadsheet</category>
		
			<category>visicalc</category>
		
			<category>textconversion</category>
		
			<category>regexp</category>
		
	</item> <item>
		<title>By: justkevin</title>
		<link>http://ask.metafilter.com/32380/Is-there-a-regexp-for-Excel#506324</link>	
		<description>From the Data menu, choose Text to Columns using the comma as a delimiter.  This will split your first column into two.  Then use the CONCENTATE function in a third column to join them back together in the right order.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.32380-506324</guid>
		<pubDate>Thu, 09 Feb 2006 08:53:43 -0800</pubDate>
		<dc:creator>justkevin</dc:creator>
	</item><item>
		<title>By: Gortuk</title>
		<link>http://ask.metafilter.com/32380/Is-there-a-regexp-for-Excel#506334</link>	
		<description>Or use @Search to locate the comma (assuming you always split on the first comma in the text) and use MID and LEFT to extract the pieces to the right and left of the comma:&lt;br&gt;
&lt;br&gt;
=MID(A1,(SEARCH(&quot;,&quot;,A1)+2),100)&amp;amp;&quot; &quot;&amp;amp;LEFT(A1,(SEARCH(&quot;,&quot;,A1))-1)</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.32380-506334</guid>
		<pubDate>Thu, 09 Feb 2006 09:01:06 -0800</pubDate>
		<dc:creator>Gortuk</dc:creator>
	</item><item>
		<title>By: JJ86</title>
		<link>http://ask.metafilter.com/32380/Is-there-a-regexp-for-Excel#506339</link>	
		<description>justkevin&apos;s solution is pretty cool, I was going to suggest a brute force method using LEN, FIND, LEFT, RIGHT as separate cell formulae.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.32380-506339</guid>
		<pubDate>Thu, 09 Feb 2006 09:08:00 -0800</pubDate>
		<dc:creator>JJ86</dc:creator>
	</item><item>
		<title>By: SheIsMighty</title>
		<link>http://ask.metafilter.com/32380/Is-there-a-regexp-for-Excel#506368</link>	
		<description>any idea how to go the other way?  2 columns, 1 first name, 1 last name need to go into one column. (sorry to hijack)</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.32380-506368</guid>
		<pubDate>Thu, 09 Feb 2006 09:45:53 -0800</pubDate>
		<dc:creator>SheIsMighty</dc:creator>
	</item><item>
		<title>By: SheIsMighty</title>
		<link>http://ask.metafilter.com/32380/Is-there-a-regexp-for-Excel#506369</link>	
		<description>Oops, I re-read the first answer and that may be my answer.  I&apos;ll try it.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.32380-506369</guid>
		<pubDate>Thu, 09 Feb 2006 09:46:33 -0800</pubDate>
		<dc:creator>SheIsMighty</dc:creator>
	</item><item>
		<title>By: DevilsAdvocate</title>
		<link>http://ask.metafilter.com/32380/Is-there-a-regexp-for-Excel#506415</link>	
		<description>Spelling counts: it&apos;s &quot;CONCATENATE&quot; not &quot;CONCENTATE&quot;.  But &amp;amp; does the same thing and you don&apos;t have to remember how to spell it: A1&amp;amp;B1 does the same thing as CONCATENATE(A1,B1).</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.32380-506415</guid>
		<pubDate>Thu, 09 Feb 2006 10:28:14 -0800</pubDate>
		<dc:creator>DevilsAdvocate</dc:creator>
	</item><item>
		<title>By: robhuddles</title>
		<link>http://ask.metafilter.com/32380/Is-there-a-regexp-for-Excel#506543</link>	
		<description>One more important thing: after you use CONCATENATE, you need to divorce the result from the originals (assuming that you mean to delete the original columns and leave yourself with only the one assembled column.) To do this, simply select all of the cells with the correctly formatted name, then choose Edit -&amp;gt; Copy. Then, with those &lt;em&gt;same&lt;/em&gt; cells selected, choose Edit -&amp;gt; Paste Special, and from the resulting dialog box, choose Paste Values.&lt;br&gt;
&lt;br&gt;
BTW, you don&apos;t actually have to use the CONCATENATE function, either. You can simply say =A1 &amp;amp; &quot; &quot; &amp;amp; B1, which takes the value of A1, adds a space, and then the value of B1. It does the same thing as CONCATENATE.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.32380-506543</guid>
		<pubDate>Thu, 09 Feb 2006 12:44:31 -0800</pubDate>
		<dc:creator>robhuddles</dc:creator>
	</item><item>
		<title>By: mbd1mbd1</title>
		<link>http://ask.metafilter.com/32380/Is-there-a-regexp-for-Excel#506548</link>	
		<description>Me too, JJ.  I worked it all out and then came back to post it, but the more elegant solution was already up.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.32380-506548</guid>
		<pubDate>Thu, 09 Feb 2006 12:56:05 -0800</pubDate>
		<dc:creator>mbd1mbd1</dc:creator>
	</item>
	</channel>
</rss>
