<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Automate Excel &#187; match</title>
	<atom:link href="http://www.automateexcel.com/tag/match/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.automateexcel.com</link>
	<description>Everything Excel. Only Excel.</description>
	<lastBuildDate>Wed, 24 Nov 2010 21:08:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Matching Multiple Items</title>
		<link>http://www.automateexcel.com/2008/10/22/matching-multiple-items/</link>
		<comments>http://www.automateexcel.com/2008/10/22/matching-multiple-items/#comments</comments>
		<pubDate>Wed, 22 Oct 2008 03:58:59 +0000</pubDate>
		<dc:creator>Kaps</dc:creator>
				<category><![CDATA[Formulas]]></category>
		<category><![CDATA[isnumber]]></category>
		<category><![CDATA[items]]></category>
		<category><![CDATA[match]]></category>
		<category><![CDATA[multiple]]></category>

		<guid isPermaLink="false">http://www.automateexcel.com/?p=1038</guid>
		<description><![CDATA[Imagine that we have the following 2 lists each consisting of 3 columns of data: And we need to find those items that are in List 1 that are in List 2. However ALL 3 columns of data must match for items to be in both lists. One way would be to construct a comprehensive [...]]]></description>
		<wfw:commentRss>http://www.automateexcel.com/2008/10/22/matching-multiple-items/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Excel Creating Unique Identifiers</title>
		<link>http://www.automateexcel.com/2008/10/20/excel-creating-unique-identifiers/</link>
		<comments>http://www.automateexcel.com/2008/10/20/excel-creating-unique-identifiers/#comments</comments>
		<pubDate>Mon, 20 Oct 2008 14:06:03 +0000</pubDate>
		<dc:creator>Kaps</dc:creator>
				<category><![CDATA[Formulas]]></category>
		<category><![CDATA[create]]></category>
		<category><![CDATA[identifiers]]></category>
		<category><![CDATA[match]]></category>
		<category><![CDATA[unique]]></category>
		<category><![CDATA[vlookup]]></category>

		<guid isPermaLink="false">http://www.automateexcel.com/?p=1003</guid>
		<description><![CDATA[Imagine that we have a list of names such as: And we want to give each one a unique identifier: So that the first name Bob has the identifier 1, and the next Mark has the identifier 2. This can be achieved by the following process. We assign Bob (i.e the first person in the [...]]]></description>
		<wfw:commentRss>http://www.automateexcel.com/2008/10/20/excel-creating-unique-identifiers/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Comparing Items in a List</title>
		<link>http://www.automateexcel.com/2008/10/14/comparing-items-in-a-list/</link>
		<comments>http://www.automateexcel.com/2008/10/14/comparing-items-in-a-list/#comments</comments>
		<pubDate>Tue, 14 Oct 2008 02:57:05 +0000</pubDate>
		<dc:creator>Kaps</dc:creator>
				<category><![CDATA[Formulas]]></category>
		<category><![CDATA[comparing]]></category>
		<category><![CDATA[isnumber]]></category>
		<category><![CDATA[items]]></category>
		<category><![CDATA[list]]></category>
		<category><![CDATA[match]]></category>

		<guid isPermaLink="false">http://www.automateexcel.com/?p=969</guid>
		<description><![CDATA[Consider the following two lists: And that we want to see which items from column A are in Column B. This can be achieved by the MATCH function in conjunction with ISNUMBER . The MATCH function has the following syntax: MATCH(A6,C4:C13,0) And this will return the position of the value cell A6 in the range [...]]]></description>
		<wfw:commentRss>http://www.automateexcel.com/2008/10/14/comparing-items-in-a-list/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Advanced Dynamic Ranges</title>
		<link>http://www.automateexcel.com/2008/10/04/advanced-dynamic-ranges/</link>
		<comments>http://www.automateexcel.com/2008/10/04/advanced-dynamic-ranges/#comments</comments>
		<pubDate>Sat, 04 Oct 2008 10:32:49 +0000</pubDate>
		<dc:creator>Kaps</dc:creator>
				<category><![CDATA[Formulas]]></category>
		<category><![CDATA[advanced]]></category>
		<category><![CDATA[dynamic]]></category>
		<category><![CDATA[match]]></category>
		<category><![CDATA[offset]]></category>
		<category><![CDATA[ranges]]></category>

		<guid isPermaLink="false">http://www.automateexcel.com/?p=940</guid>
		<description><![CDATA[The standard dynamic range uses a named range based on the COUNTA formulae: =OFFSET($H$1,0,0,COUNT($H:$H),1) However, this only works where there are no blanks in the data. If the data is purely numeric, and contains blank cells in the data then use a range such as: =OFFSET($H$1,0,0,MATCH(1E+306,$H:$H,1),1) If the data is purely text then we will [...]]]></description>
		<wfw:commentRss>http://www.automateexcel.com/2008/10/04/advanced-dynamic-ranges/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Two Dimensional VLOOKUP</title>
		<link>http://www.automateexcel.com/2008/09/06/two-dimensional-vlookup/</link>
		<comments>http://www.automateexcel.com/2008/09/06/two-dimensional-vlookup/#comments</comments>
		<pubDate>Sat, 06 Sep 2008 17:49:09 +0000</pubDate>
		<dc:creator>Kaps</dc:creator>
				<category><![CDATA[LOOKUP]]></category>
		<category><![CDATA[dimensional]]></category>
		<category><![CDATA[hloopup]]></category>
		<category><![CDATA[index]]></category>
		<category><![CDATA[match]]></category>
		<category><![CDATA[two]]></category>
		<category><![CDATA[vlookup]]></category>

		<guid isPermaLink="false">http://www.automateexcel.com/?p=856</guid>
		<description><![CDATA[The VLOOKUP and HLOOKUP functions are well known for looking up data in one dimension: And then: However what happens if we have a TWO dimensional array And we want to find the value for Boats in Mar-08.  So we could add two drop downs to specify the mode of transport and the month that [...]]]></description>
		<wfw:commentRss>http://www.automateexcel.com/2008/09/06/two-dimensional-vlookup/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

