<?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: VLOOKUP(), new to me</title>
	<atom:link href="http://gokubi.com/archives/vlookup-new-to-me/feed" rel="self" type="application/rss+xml" />
	<link>http://gokubi.com/archives/vlookup-new-to-me</link>
	<description></description>
	<lastBuildDate>Mon, 23 Aug 2010 19:34:03 -0600</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Judi Sohn</title>
		<link>http://gokubi.com/archives/vlookup-new-to-me/comment-page-1#comment-99327</link>
		<dc:creator>Judi Sohn</dc:creator>
		<pubDate>Mon, 12 May 2008 02:35:22 +0000</pubDate>
		<guid isPermaLink="false">http://gokubi.com/archives/vlookup-new-to-me#comment-99327</guid>
		<description>I love VLOOKUP, don&#039;t know how I do anything in Excel without it.

I blogged about a workaround to the case sensitivity issue &lt;a href=&quot;http://www.momathome.com/2006/08/case-sensitive_vlookups_for_sa/&quot; rel=&quot;nofollow&quot;&gt;on my site here.&lt;/a&gt; It works.</description>
		<content:encoded><![CDATA[<p>I love VLOOKUP, don&#8217;t know how I do anything in Excel without it.</p>
<p>I blogged about a workaround to the case sensitivity issue <a href="http://www.momathome.com/2006/08/case-sensitive_vlookups_for_sa/" rel="nofollow">on my site here.</a> It works.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David</title>
		<link>http://gokubi.com/archives/vlookup-new-to-me/comment-page-1#comment-98053</link>
		<dc:creator>David</dc:creator>
		<pubDate>Wed, 07 May 2008 05:09:31 +0000</pubDate>
		<guid isPermaLink="false">http://gokubi.com/archives/vlookup-new-to-me#comment-98053</guid>
		<description>After performing a VLOOKUP, I usually do a COPY - PASTE (SPECIAL) AS TEXT.  Then I sort the sheet by that column and find all the rows that returned an error.  I can then do a search-replace to clear those cells and can load the rows with values in that column.  
Very important to do the paste(special), as every time you resort the sheet, Excel will recalculate the vlookup.  For lots of rows in the source and destination sheet, this can take a very long time.

That said, VLOOKUP is good for a one-off, but for implementation data-loads, it is far better to load everything into Access, as it&#039;s faster and can make better queries.  Ezra Kenigsberg gave a super talk at Dreamforce 2007 about how to do this: http://blogs.salesforce.com/dreamforce07/2007/10/applied-data-qu.html</description>
		<content:encoded><![CDATA[<p>After performing a VLOOKUP, I usually do a COPY &#8211; PASTE (SPECIAL) AS TEXT.  Then I sort the sheet by that column and find all the rows that returned an error.  I can then do a search-replace to clear those cells and can load the rows with values in that column.<br />
Very important to do the paste(special), as every time you resort the sheet, Excel will recalculate the vlookup.  For lots of rows in the source and destination sheet, this can take a very long time.</p>
<p>That said, VLOOKUP is good for a one-off, but for implementation data-loads, it is far better to load everything into Access, as it&#8217;s faster and can make better queries.  Ezra Kenigsberg gave a super talk at Dreamforce 2007 about how to do this: <a href="http://blogs.salesforce.com/dreamforce07/2007/10/applied-data-qu.html" rel="nofollow">http://blogs.salesforce.com/dreamforce07/2007/10/applied-data-qu.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike</title>
		<link>http://gokubi.com/archives/vlookup-new-to-me/comment-page-1#comment-96851</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Fri, 02 May 2008 15:36:10 +0000</pubDate>
		<guid isPermaLink="false">http://gokubi.com/archives/vlookup-new-to-me#comment-96851</guid>
		<description>The point on case sensitive Id&#039;s is a good one. Another fix for this issue is to install the sforce excel connector. This comes with a &quot;Fixid()&quot; function which automatically converts 15 character Id&#039;s (not case sensitive) to 18 character Id&#039;s (which are case sensitive).</description>
		<content:encoded><![CDATA[<p>The point on case sensitive Id&#8217;s is a good one. Another fix for this issue is to install the sforce excel connector. This comes with a &#8220;Fixid()&#8221; function which automatically converts 15 character Id&#8217;s (not case sensitive) to 18 character Id&#8217;s (which are case sensitive).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scott Hemmeter</title>
		<link>http://gokubi.com/archives/vlookup-new-to-me/comment-page-1#comment-96716</link>
		<dc:creator>Scott Hemmeter</dc:creator>
		<pubDate>Fri, 02 May 2008 03:29:28 +0000</pubDate>
		<guid isPermaLink="false">http://gokubi.com/archives/vlookup-new-to-me#comment-96716</guid>
		<description>VLOOKUP is a must.  In fact, Salesforce even started using it in their formulas.  It&#039;s only available on Validation Rules, but it works ina  similar way.

I used VLOOKUP extensively very recently when I moved myself from a powered up DE org to a new EE org.  As I made the migration, I would use an Excel sheet with 2 columns in it (Old ID &amp; New ID).  Then as I loaded in data, I would use VLOOKUP to make sure my associations were right.  For example, say I was working on a Contacts load.  I would have already completed the Account load.  In order to populate the Account ID on Contact, I&#039;d do a VLOOKUP in my Id mapping table to translate the old value to new.  Voila!  This simple approach allowed me to move my data very quickly using the Excel connector.

&lt;b&gt;One very important thing&lt;/b&gt;:  there is a final parameter in the formula that is either TRUE or FALSE.  In almost every circumstance you want to put FALSE.  This forces an exact match.  If I exclude this parameter, I have had occassions where the VLOOKUP picks the wrong row.  I can&#039;t explain why an Exact Match isn&#039;t the default, but it&#039;s not.  Make sure you use that last parameter.</description>
		<content:encoded><![CDATA[<p>VLOOKUP is a must.  In fact, Salesforce even started using it in their formulas.  It&#8217;s only available on Validation Rules, but it works ina  similar way.</p>
<p>I used VLOOKUP extensively very recently when I moved myself from a powered up DE org to a new EE org.  As I made the migration, I would use an Excel sheet with 2 columns in it (Old ID &amp; New ID).  Then as I loaded in data, I would use VLOOKUP to make sure my associations were right.  For example, say I was working on a Contacts load.  I would have already completed the Account load.  In order to populate the Account ID on Contact, I&#8217;d do a VLOOKUP in my Id mapping table to translate the old value to new.  Voila!  This simple approach allowed me to move my data very quickly using the Excel connector.</p>
<p><b>One very important thing</b>:  there is a final parameter in the formula that is either TRUE or FALSE.  In almost every circumstance you want to put FALSE.  This forces an exact match.  If I exclude this parameter, I have had occassions where the VLOOKUP picks the wrong row.  I can&#8217;t explain why an Exact Match isn&#8217;t the default, but it&#8217;s not.  Make sure you use that last parameter.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vinod</title>
		<link>http://gokubi.com/archives/vlookup-new-to-me/comment-page-1#comment-96697</link>
		<dc:creator>Vinod</dc:creator>
		<pubDate>Fri, 02 May 2008 01:21:36 +0000</pubDate>
		<guid isPermaLink="false">http://gokubi.com/archives/vlookup-new-to-me#comment-96697</guid>
		<description>VLOOKUP is good times....but you could also do this with DemandTools and the Find/Report IDs module.  Super handy.</description>
		<content:encoded><![CDATA[<p>VLOOKUP is good times&#8230;.but you could also do this with DemandTools and the Find/Report IDs module.  Super handy.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bryan</title>
		<link>http://gokubi.com/archives/vlookup-new-to-me/comment-page-1#comment-96689</link>
		<dc:creator>Bryan</dc:creator>
		<pubDate>Fri, 02 May 2008 00:20:19 +0000</pubDate>
		<guid isPermaLink="false">http://gokubi.com/archives/vlookup-new-to-me#comment-96689</guid>
		<description>Kudos for posting this! In my experience, you need to watch how you use the final argument in the formula, the Range_lookup. I almost always set it to &quot;FALSE&quot;. From MS Help:
Range_lookup specifies whether you want VLOOKUP to find an exact match or an approximate match. If TRUE or omitted, an approximate match is returned. In other words, if an exact match is not found, the next largest value that is less than lookup_value is returned. If FALSE, VLOOKUP will find an exact match. If one is not found, the error value #N/A is returned.

Pivot Table is the other secret, power user feature in Excel. Use it with VLOOKUP and you&#039;re en fuego! You can even do custom formulas and fields in the Pivot Table. I also use Pivot Tables to query Access databases, when my record set exceeds 65K rows (Excel 2003&#039;s limit).

Recently, I was interviewing for an intern position. I asked the candidates what their power user function was. A few people knew PivotTables, but the guy who really impressed me said &quot;Arrays&quot;. I still don&#039;t know what it does or how to use it....</description>
		<content:encoded><![CDATA[<p>Kudos for posting this! In my experience, you need to watch how you use the final argument in the formula, the Range_lookup. I almost always set it to &#8220;FALSE&#8221;. From MS Help:<br />
Range_lookup specifies whether you want VLOOKUP to find an exact match or an approximate match. If TRUE or omitted, an approximate match is returned. In other words, if an exact match is not found, the next largest value that is less than lookup_value is returned. If FALSE, VLOOKUP will find an exact match. If one is not found, the error value #N/A is returned.</p>
<p>Pivot Table is the other secret, power user feature in Excel. Use it with VLOOKUP and you&#8217;re en fuego! You can even do custom formulas and fields in the Pivot Table. I also use Pivot Tables to query Access databases, when my record set exceeds 65K rows (Excel 2003&#8242;s limit).</p>
<p>Recently, I was interviewing for an intern position. I asked the candidates what their power user function was. A few people knew PivotTables, but the guy who really impressed me said &#8220;Arrays&#8221;. I still don&#8217;t know what it does or how to use it&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eric Fain</title>
		<link>http://gokubi.com/archives/vlookup-new-to-me/comment-page-1#comment-96678</link>
		<dc:creator>Eric Fain</dc:creator>
		<pubDate>Thu, 01 May 2008 22:48:13 +0000</pubDate>
		<guid isPermaLink="false">http://gokubi.com/archives/vlookup-new-to-me#comment-96678</guid>
		<description>Very nice. Also can be useful combined with the excel connector.</description>
		<content:encoded><![CDATA[<p>Very nice. Also can be useful combined with the excel connector.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve</title>
		<link>http://gokubi.com/archives/vlookup-new-to-me/comment-page-1#comment-96659</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Thu, 01 May 2008 20:50:28 +0000</pubDate>
		<guid isPermaLink="false">http://gokubi.com/archives/vlookup-new-to-me#comment-96659</guid>
		<description>Awesome, I&#039;ll try out IsError()! Gotta love the 15 to 18 character case-sensitiveness of Salesforce Ids!</description>
		<content:encoded><![CDATA[<p>Awesome, I&#8217;ll try out IsError()! Gotta love the 15 to 18 character case-sensitiveness of Salesforce Ids!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter C</title>
		<link>http://gokubi.com/archives/vlookup-new-to-me/comment-page-1#comment-96650</link>
		<dc:creator>Peter C</dc:creator>
		<pubDate>Thu, 01 May 2008 20:06:47 +0000</pubDate>
		<guid isPermaLink="false">http://gokubi.com/archives/vlookup-new-to-me#comment-96650</guid>
		<description>Agreed - vlookup has been a lifesaver on several occasions. 

But a word of caution when using with the vlookup function with SFDC data - vlookup is NOT case sensitive, so if you are looking up SFDC data imported into Excel via a report/office plugin and therefore the 15 char Ids, it may bring back incorrect matches.

You can do an exact match with an amended vlookup (see http://support.microsoft.com/kb/214264), or you can create a custom auto-number field as an External Id in SFDC and use that for lookups.

Re Steve&#039;s point, iserror() is another great function to wrap vlookup in - if it doesn&#039;t find a match, you can then return something like a 0, rather the #N/A which screws up numeric functions.</description>
		<content:encoded><![CDATA[<p>Agreed &#8211; vlookup has been a lifesaver on several occasions. </p>
<p>But a word of caution when using with the vlookup function with SFDC data &#8211; vlookup is NOT case sensitive, so if you are looking up SFDC data imported into Excel via a report/office plugin and therefore the 15 char Ids, it may bring back incorrect matches.</p>
<p>You can do an exact match with an amended vlookup (see <a href="http://support.microsoft.com/kb/214264)" rel="nofollow">http://support.microsoft.com/kb/214264)</a>, or you can create a custom auto-number field as an External Id in SFDC and use that for lookups.</p>
<p>Re Steve&#8217;s point, iserror() is another great function to wrap vlookup in &#8211; if it doesn&#8217;t find a match, you can then return something like a 0, rather the #N/A which screws up numeric functions.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve</title>
		<link>http://gokubi.com/archives/vlookup-new-to-me/comment-page-1#comment-96645</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Thu, 01 May 2008 19:05:26 +0000</pubDate>
		<guid isPermaLink="false">http://gokubi.com/archives/vlookup-new-to-me#comment-96645</guid>
		<description>My other favorite functions for dealing with data: If(), IsBlank(), Not(), And(), Or(). Find() is great but annoying because if it doesn&#039;t find the text in the field it throws an error, rather than returning null or something useful.</description>
		<content:encoded><![CDATA[<p>My other favorite functions for dealing with data: If(), IsBlank(), Not(), And(), Or(). Find() is great but annoying because if it doesn&#8217;t find the text in the field it throws an error, rather than returning null or something useful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pete 'Fifedog' Fife</title>
		<link>http://gokubi.com/archives/vlookup-new-to-me/comment-page-1#comment-96641</link>
		<dc:creator>Pete 'Fifedog' Fife</dc:creator>
		<pubDate>Thu, 01 May 2008 18:41:00 +0000</pubDate>
		<guid isPermaLink="false">http://gokubi.com/archives/vlookup-new-to-me#comment-96641</guid>
		<description>I would suggest anyone and everyone how has every worked with Excel know this one function!  That and the use of the &quot;If&quot; function.  I&#039;m surprised at those people who live and die in excel don&#039;t know these functions.  I guess since I maybe a little younger and had part of my education as working with/in excel I take it for granted.

Even though the &#039;help&#039; doesn&#039;t explain that much I use it all the time just to see the examples.</description>
		<content:encoded><![CDATA[<p>I would suggest anyone and everyone how has every worked with Excel know this one function!  That and the use of the &#8220;If&#8221; function.  I&#8217;m surprised at those people who live and die in excel don&#8217;t know these functions.  I guess since I maybe a little younger and had part of my education as working with/in excel I take it for granted.</p>
<p>Even though the &#8216;help&#8217; doesn&#8217;t explain that much I use it all the time just to see the examples.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
