<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: More Sorting Multiple Columns</title>
	<atom:link href="http://www.dailydoseofexcel.com/archives/2004/11/08/more-sorting-multiple-columns/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dailydoseofexcel.com/archives/2004/11/08/more-sorting-multiple-columns/</link>
	<description>Daily posts of Excel tips…and other stuff</description>
	<lastBuildDate>Wed, 08 Feb 2012 23:58:05 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: C.G.</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/11/08/more-sorting-multiple-columns/#comment-2531</link>
		<dc:creator>C.G.</dc:creator>
		<pubDate>Thu, 11 Nov 2004 19:14:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=851#comment-2531</guid>
		<description>&lt;p&gt;I agree with all the above.&lt;/p&gt;
&lt;p&gt;I use multi-column concatenations all the time for sorting, lookup and area formula purposes. It works like a charm but as discussed above it has to be set up properly. For example, if one column is expected to have numbers of one to five digits, then those numbers have to left-padded with zeros with Text(b2,&quot;00000?) ...&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I agree with all the above.</p>
<p>I use multi-column concatenations all the time for sorting, lookup and area formula purposes. It works like a charm but as discussed above it has to be set up properly. For example, if one column is expected to have numbers of one to five digits, then those numbers have to left-padded with zeros with Text(b2,&#8221;00000?) &#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Zoltan Till</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/11/08/more-sorting-multiple-columns/#comment-2530</link>
		<dc:creator>Zoltan Till</dc:creator>
		<pubDate>Wed, 10 Nov 2004 16:49:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=851#comment-2530</guid>
		<description>&lt;p&gt;This is also useful for multi conditional SUMIF and COUNTIF.&lt;br&gt;
I used many times.&lt;br&gt;
Zoltan&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>This is also useful for multi conditional SUMIF and COUNTIF.<br />
I used many times.<br />
Zoltan</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon Peltier</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/11/08/more-sorting-multiple-columns/#comment-2529</link>
		<dc:creator>Jon Peltier</dc:creator>
		<pubDate>Tue, 09 Nov 2004 01:25:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=851#comment-2529</guid>
		<description>&lt;p&gt;Tom&#039;s approach is also useful to set up a lazy-man&#039;s multi column lookup.&lt;/p&gt;
&lt;p&gt;- Jon&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Tom&#8217;s approach is also useful to set up a lazy-man&#8217;s multi column lookup.</p>
<p>- Jon</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ross</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/11/08/more-sorting-multiple-columns/#comment-2528</link>
		<dc:creator>ross</dc:creator>
		<pubDate>Mon, 08 Nov 2004 21:04:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=851#comment-2528</guid>
		<description>&lt;p&gt;Dick, did you ever get anywhere with the fuzzy sort thing you posted a while back - i had a quite look one day (when i needed to do something similar) but could&#039;t reallt offer anything new.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Dick, did you ever get anywhere with the fuzzy sort thing you posted a while back &#8211; i had a quite look one day (when i needed to do something similar) but could&#8217;t reallt offer anything new.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/11/08/more-sorting-multiple-columns/#comment-2527</link>
		<dc:creator>Tom</dc:creator>
		<pubDate>Mon, 08 Nov 2004 19:51:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=851#comment-2527</guid>
		<description>&lt;p&gt;Use the TEXT formula to format the numeric field and for the Aplabetic Fields use the REPT function to append spaces to the end.&lt;/p&gt;
&lt;p&gt;=TEXT(B2,&quot;00?)&amp;TEXT(C2,&quot;000?)&amp;TEXT(D2,&quot;00?)&amp;A2&amp;REPT(&quot; &quot;,20-LEN(A2))&lt;/p&gt;
&lt;p&gt;NameWeekAmountNumberSort&lt;br&gt;
John2600160260016John&lt;br&gt;
Tom3300190330019Tom&lt;br&gt;
Dick4100140410014Dick&lt;br&gt;
John4200120420012John&lt;br&gt;
Dick5300180530018Dick&lt;br&gt;
Tom5800140580014Tom&lt;br&gt;
John650050650005John&lt;br&gt;
Tom710090710009Tom&lt;br&gt;
Dick8400190840019Dick&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Use the TEXT formula to format the numeric field and for the Aplabetic Fields use the REPT function to append spaces to the end.</p>
<p>=TEXT(B2,&#8221;00?)&amp;TEXT(C2,&#8221;000?)&amp;TEXT(D2,&#8221;00?)&amp;A2&amp;REPT(&#8221; &#8220;,20-LEN(A2))</p>
<p>NameWeekAmountNumberSort<br />
John2600160260016John<br />
Tom3300190330019Tom<br />
Dick4100140410014Dick<br />
John4200120420012John<br />
Dick5300180530018Dick<br />
Tom5800140580014Tom<br />
John650050650005John<br />
Tom710090710009Tom<br />
Dick8400190840019Dick</p>
]]></content:encoded>
	</item>
</channel>
</rss>

