<?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>wisefaq.com &#187; Excel</title>
	<atom:link href="http://blog.wisefaq.com/category/excel/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.wisefaq.com</link>
	<description>Stories, and bit rot, from the IT Support Trenches</description>
	<lastBuildDate>Wed, 08 Sep 2010 12:18:33 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1-alpha</generator>
		<item>
		<title>Excel: how do I calculate the date 24 weeks from today?</title>
		<link>http://blog.wisefaq.com/2010/01/04/excel-how-do-i-calculate-the-date-24-weeks-from-today/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=excel-how-do-i-calculate-the-date-24-weeks-from-today</link>
		<comments>http://blog.wisefaq.com/2010/01/04/excel-how-do-i-calculate-the-date-24-weeks-from-today/#comments</comments>
		<pubDate>Sun, 03 Jan 2010 14:10:00 +0000</pubDate>
		<dc:creator>Dale</dc:creator>
				<category><![CDATA[Excel]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[Date function]]></category>
		<category><![CDATA[howto]]></category>
		<guid isPermaLink="false">http://blog.wisefaq.com/2010/01/04/excel-how-do-i-calculate-the-date-24-weeks-from-today/</guid>
		<description><![CDATA[The question was: Need to create series with dates in intervals of 6 weeks 24 weeks and 52 weeks. want it to be set to do it automatically. Can anyone help me? The answer is simple.&#160; You can use the Excel Date functions to do this: To break down what is happening here, using “24 [...]
Related posts:<ol><li><a href='http://blog.wisefaq.com/2008/07/24/date-mail-merge-bug-fixed-in-office-2007/' rel='bookmark' title='Permanent Link: Date Mail Merge Bug fixed in Office 2007'>Date Mail Merge Bug fixed in Office 2007</a></li>
<li><a href='http://blog.wisefaq.com/2009/01/01/how-can-i-append-the-date-and-time-to-a-file/' rel='bookmark' title='Permanent Link: How can I append the date and time to a file?'>How can I append the date and time to a file?</a></li>
<li><a href='http://blog.wisefaq.com/2010/07/21/detecting-broken-or-not-installed-smssccm-clients/' rel='bookmark' title='Permanent Link: Detecting broken or not installed SMS/SCCM clients.'>Detecting broken or not installed SMS/SCCM clients.</a></li>
</ol>
Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>The question was:</p>
<blockquote><p><a href="http://leovilletownsquare.com/fusionbb/showtopic.php?tid/28358/" rel="nofollow">Need to create series</a> with dates in intervals of 6 weeks 24 weeks and 52 weeks. want it to be set to do it automatically. Can anyone help me?</p>
</blockquote>
<p>The answer is simple.&#160; You can use the Excel Date functions to do this:</p>
<p><a href="http://blog.wisefaq.com/wp-content/uploads/2010/01/ExcelDateFunctions.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Excel Date Functions" border="0" alt="Excel Date Functions" src="http://blog.wisefaq.com/wp-content/uploads/2010/01/ExcelDateFunctions_thumb.jpg" width="486" height="257" /></a></p>
<p>To break down what is happening here, using “24 weeks from today”, as an example.</p>
<p>The formula is <code>     <br />=DATE(YEAR(B2),MONTH(B2), DAY(B2)+168)      <br />=DATE(2009,MONTH(B2), DAY(B2)+168)      <br />=DATE(2009,12, DAY(B2)+168)      <br />=DATE(2009,12,29+168)</code> &lt;- (168 days equals 7 days time 24 weeks) <code>     <br />=15 June 2010</code></p>
<p>Update:   <br />Another way to do this is by using the TODAY verb.    <br />ie.&#160; <code>=TODAY()+168</code>    <br />(with thanks to <a href="http://angrytechnician.wordpress.com/" target="_blank">The Angry Technician</a>)</p>
<p><a title="Bookmark and Share" onclick="window.open(&#39;http://www.addthis.com/bookmark.php?wt=nw&amp;pub=DaleOz&amp;url=&#39;+encodeURIComponent(location.href)+&#39;&amp;title=&#39;+encodeURIComponent(document.title), &#39;addthis&#39;, &#39;scrollbars=yes,menubar=no,width=620,height=520,resizable=yes,toolbar=no,location=no,status=no,screenX=200,screenY=100,left=200,top=100&#39;); return false;" href="http://www.addthis.com/bookmark.php" target="_blank"><img border="0" alt="Bookmark and Share" src="http://blog.wisefaq.com/wp-content/uploads/2009/07/addthis-button1-share.gif" width="125" height="16" /></a></p>
<p>Related posts:<ol><li><a href='http://blog.wisefaq.com/2008/07/24/date-mail-merge-bug-fixed-in-office-2007/' rel='bookmark' title='Permanent Link: Date Mail Merge Bug fixed in Office 2007'>Date Mail Merge Bug fixed in Office 2007</a></li>
<li><a href='http://blog.wisefaq.com/2009/01/01/how-can-i-append-the-date-and-time-to-a-file/' rel='bookmark' title='Permanent Link: How can I append the date and time to a file?'>How can I append the date and time to a file?</a></li>
<li><a href='http://blog.wisefaq.com/2010/07/21/detecting-broken-or-not-installed-smssccm-clients/' rel='bookmark' title='Permanent Link: Detecting broken or not installed SMS/SCCM clients.'>Detecting broken or not installed SMS/SCCM clients.</a></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.wisefaq.com/2010/01/04/excel-how-do-i-calculate-the-date-24-weeks-from-today/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>“VBA? You wrote VBA code for that?”</title>
		<link>http://blog.wisefaq.com/2009/04/20/vba-you-wrote-vba-code-for-that/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=vba-you-wrote-vba-code-for-that</link>
		<comments>http://blog.wisefaq.com/2009/04/20/vba-you-wrote-vba-code-for-that/#comments</comments>
		<pubDate>Sun, 19 Apr 2009 15:10:00 +0000</pubDate>
		<dc:creator>Dale</dc:creator>
				<category><![CDATA[Code Cutting]]></category>
		<category><![CDATA[Excel]]></category>
		<category><![CDATA[How To]]></category>
		<guid isPermaLink="false">http://blog.wisefaq.com/2009/04/20/vba-you-wrote-vba-code-for-that/</guid>
		<description><![CDATA[exclaimed a colleague. “Is that like Visual Basic?” Well kind of, VBA is Visual Basic for Applications.  Which is a scripting language for the Microsoft Office system. I’d had a problem where an extract of an asset report only had the “Last user” and “Last software scan date” on the first record for each computer [...]
Related posts:<ol><li><a href='http://blog.wisefaq.com/2008/09/18/get-the-logged-on-user-code-which-works/' rel='bookmark' title='Permanent Link: Get the logged on user &#8211; code which works!'>Get the logged on user &#8211; code which works!</a></li>
<li><a href='http://blog.wisefaq.com/2009/05/29/counting-lines-of-vb6-code/' rel='bookmark' title='Permanent Link: Counting lines of VB6 code.'>Counting lines of VB6 code.</a></li>
<li><a href='http://blog.wisefaq.com/2009/04/02/you-leave-comments-in-your-programming-code-for-others-not-for-yourself/' rel='bookmark' title='Permanent Link: You leave comments in your programming code for others, not for yourself.'>You leave comments in your programming code for others, not for yourself.</a></li>
</ol>
Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>exclaimed a colleague.</p>
<p>“Is that like Visual Basic?”</p>
<p>Well kind of, VBA is Visual Basic for Applications.  Which is a scripting language for the Microsoft Office system.</p>
<p>I’d had a problem where an extract of an asset report only had the “Last user” and “Last software scan date” on the first record for each computer listed.<br />
I needed each line to have entries, as I was going to sort the data later.</p>
<p><a href="http://blog.wisefaq.com/wp-content/uploads/2009/04/excelcellcopyroutinescreenshot1.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Excel screenshot showing blank cells." src="http://blog.wisefaq.com/wp-content/uploads/2009/04/excelcellcopyroutinescreenshot1-thumb.jpg" border="0" alt="Excel screenshot showing blank cells." width="347" height="250" /></a> but I wanted this: <a href="http://blog.wisefaq.com/wp-content/uploads/2009/04/excelcellcopyroutinescreenshot2.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Excel screenshot showing cells filled in CopyCell macro" src="http://blog.wisefaq.com/wp-content/uploads/2009/04/excelcellcopyroutinescreenshot2-thumb.jpg" border="0" alt="Excel screenshot showing cells filled in CopyCell macro" width="345" height="250" /></a></p>
<p>There was over 4000 records in the extract, so I couldn’t “Fill Down”.</p>
<p>I spent some time looking at Excel spreadsheet functions, particularly the IF function, and kept on running into issues.</p>
<p>So I wrote a VBA Macro.</p>
<p><span style="font-family: Courier;">Dim RowNumber As Integer<br />
Dim ComputerNameColumn As Integer<br />
Dim LastUserColumn As Integer<br />
Dim LastSoftwareScanDateColumn As Integer </span></p>
<p><span style="font-family: Courier;">ComputerNameColumn = 1<br />
LastUserNameColumn = 2<br />
LastSoftwareScanDateColumn = 4 </span></p>
<p><span style="font-family: Courier;">For RowNumber = 2 To 2324<br />
&#8216; compare Computer Names, if same the current computer name is same as the last<br />
&#8216; copy the previous &#8220;Last User, Last Software Scan Date&#8221; columns.<br />
If Cells(RowNumber, ComputerNameColumn) = Cells(RowNumber &#8211; 1, ComputerNameColumn) Then<br />
Cells(RowNumber, LastUserNameColumn) = Cells(RowNumber &#8211; 1, LastUserNameColumn)<br />
Cells(RowNumber, LastSoftwareScanDateColumn) = Cells(RowNumber &#8211; 1, LastSoftwareScanDateColumn)<br />
&#8216;<br />
End If<br />
Next</span></p>
<p>Yes, it is simple, and you can see it was written for one time use<strong><span style="color: #00ff00;"><sup>*</sup></span></strong>.  But it worked.</p>
<p>You can download the sample spreadsheet <a title="Excel spreadsheet with CopyCells macro" href="http://blog.wisefaq.com/wp-content/uploads/2009/04/excel-copycells-example.zip">here</a>.</p>
<p><strong><span style="color: #00ff00;"><sup>*</sup></span></strong> – for persistent use, you might want to detect things like the ActiveSheet, the number of rows; and whether the “Last user/Last software scan date” cells are actually blank before you overwrite them.</p>
<p><a title="Bookmark and Share" onclick="window.open('http://www.addthis.com/bookmark.php?wt=nw&amp;pub=DaleOz&amp;url='+encodeURIComponent(location.href)+'&amp;title='+encodeURIComponent(document.title), 'addthis', 'scrollbars=yes,menubar=no,width=620,height=520,resizable=yes,toolbar=no,location=no,status=no,screenX=200,screenY=100,left=200,top=100'); return false;" href="http://www.addthis.com/bookmark.php" target="_blank"><img src="http://s9.addthis.com/button1-share.gif" border="0" alt="Bookmark and Share" width="125" height="16" /></a></p>
<p>Related posts:<ol><li><a href='http://blog.wisefaq.com/2008/09/18/get-the-logged-on-user-code-which-works/' rel='bookmark' title='Permanent Link: Get the logged on user &#8211; code which works!'>Get the logged on user &#8211; code which works!</a></li>
<li><a href='http://blog.wisefaq.com/2009/05/29/counting-lines-of-vb6-code/' rel='bookmark' title='Permanent Link: Counting lines of VB6 code.'>Counting lines of VB6 code.</a></li>
<li><a href='http://blog.wisefaq.com/2009/04/02/you-leave-comments-in-your-programming-code-for-others-not-for-yourself/' rel='bookmark' title='Permanent Link: You leave comments in your programming code for others, not for yourself.'>You leave comments in your programming code for others, not for yourself.</a></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.wisefaq.com/2009/04/20/vba-you-wrote-vba-code-for-that/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Excel &#8211; Merging columns using the Concatenate function</title>
		<link>http://blog.wisefaq.com/2009/01/05/excel-merging-columns-using-the-concatenate-function/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=excel-merging-columns-using-the-concatenate-function</link>
		<comments>http://blog.wisefaq.com/2009/01/05/excel-merging-columns-using-the-concatenate-function/#comments</comments>
		<pubDate>Sun, 04 Jan 2009 14:01:00 +0000</pubDate>
		<dc:creator>Dale</dc:creator>
				<category><![CDATA[Excel]]></category>
		<category><![CDATA[How To]]></category>
		<guid isPermaLink="false">http://blog.wisefaq.com/2009/01/05/excel-merging-columns-using-the-concatenate-function/</guid>
		<description><![CDATA[Related posts:How to use VLOOKUP on Microsoft Excel Excel: how do I calculate the date 24 weeks from today? Microsoft Office Excel cannot find the data you&#8217;re searching for. Related posts brought to you by Yet Another Related Posts Plugin.
Related posts:<ol><li><a href='http://blog.wisefaq.com/2008/02/26/how-to-use-vlookup-on-excel/' rel='bookmark' title='Permanent Link: How to use VLOOKUP on Microsoft Excel'>How to use VLOOKUP on Microsoft Excel</a></li>
<li><a href='http://blog.wisefaq.com/2010/01/04/excel-how-do-i-calculate-the-date-24-weeks-from-today/' rel='bookmark' title='Permanent Link: Excel: how do I calculate the date 24 weeks from today?'>Excel: how do I calculate the date 24 weeks from today?</a></li>
<li><a href='http://blog.wisefaq.com/2008/11/25/microsoft-office-excel-cannot-find-the-data-youre-searching-for/' rel='bookmark' title='Permanent Link: Microsoft Office Excel cannot find the data you&#8217;re searching for.'>Microsoft Office Excel cannot find the data you&#8217;re searching for.</a></li>
</ol>
Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.wisefaq.com/wp-content/uploads/2008/12/excelconcatenate.jpg"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="Excel Concatenate function" border="0" alt="Excel Concatenate function" src="http://blog.wisefaq.com/wp-content/uploads/2008/12/excelconcatenate-thumb.jpg" width="332" height="78" /></a> </p>
<p><a title="Bookmark and Share" onclick="window.open(&#39;http://www.addthis.com/bookmark.php?wt=nw&amp;pub=DaleOz&amp;url=&#39;+encodeURIComponent(location.href)+&#39;&amp;title=&#39;+encodeURIComponent(document.title), &#39;addthis&#39;, &#39;scrollbars=yes,menubar=no,width=620,height=520,resizable=yes,toolbar=no,location=no,status=no,screenX=200,screenY=100,left=200,top=100&#39;); return false;" target="_blank" href="http://www.addthis.com/bookmark.php"><img border="0" alt="Bookmark and Share" src="http://s9.addthis.com/button1-share.gif" width="125" height="16" /></a></p>
<p>Related posts:<ol><li><a href='http://blog.wisefaq.com/2008/02/26/how-to-use-vlookup-on-excel/' rel='bookmark' title='Permanent Link: How to use VLOOKUP on Microsoft Excel'>How to use VLOOKUP on Microsoft Excel</a></li>
<li><a href='http://blog.wisefaq.com/2010/01/04/excel-how-do-i-calculate-the-date-24-weeks-from-today/' rel='bookmark' title='Permanent Link: Excel: how do I calculate the date 24 weeks from today?'>Excel: how do I calculate the date 24 weeks from today?</a></li>
<li><a href='http://blog.wisefaq.com/2008/11/25/microsoft-office-excel-cannot-find-the-data-youre-searching-for/' rel='bookmark' title='Permanent Link: Microsoft Office Excel cannot find the data you&#8217;re searching for.'>Microsoft Office Excel cannot find the data you&#8217;re searching for.</a></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.wisefaq.com/2009/01/05/excel-merging-columns-using-the-concatenate-function/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft Office Excel cannot find the data you&#8217;re searching for.</title>
		<link>http://blog.wisefaq.com/2008/11/25/microsoft-office-excel-cannot-find-the-data-youre-searching-for/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=microsoft-office-excel-cannot-find-the-data-youre-searching-for</link>
		<comments>http://blog.wisefaq.com/2008/11/25/microsoft-office-excel-cannot-find-the-data-youre-searching-for/#comments</comments>
		<pubDate>Mon, 24 Nov 2008 15:06:00 +0000</pubDate>
		<dc:creator>Dale</dc:creator>
				<category><![CDATA[Excel]]></category>
		<guid isPermaLink="false">http://blog.wisefaq.com/2008/12/01/microsoft-office-excel-cannot-find-the-data-youre-searching-for/</guid>
		<description><![CDATA[I’m doing some analysis of Help Desk data, and I often use Excel for this task.  Now I know a helpdesk caller did log a problem with the subject “five things I hate about my iPhone”. But Excel couldn’t find it (see picture right). The problem was caused by the Excel feature “Find by format” [...]
Related posts:<ol><li><a href='http://blog.wisefaq.com/2010/01/21/remove-hidden-data-from-microsoft-office-documents/' rel='bookmark' title='Permanent Link: Remove hidden data from Microsoft Office documents.'>Remove hidden data from Microsoft Office documents.</a></li>
<li><a href='http://blog.wisefaq.com/2008/02/26/how-to-use-vlookup-on-excel/' rel='bookmark' title='Permanent Link: How to use VLOOKUP on Microsoft Excel'>How to use VLOOKUP on Microsoft Excel</a></li>
<li><a href='http://blog.wisefaq.com/2008/07/24/date-mail-merge-bug-fixed-in-office-2007/' rel='bookmark' title='Permanent Link: Date Mail Merge Bug fixed in Office 2007'>Date Mail Merge Bug fixed in Office 2007</a></li>
</ol>
Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.wisefaq.com/wp-content/uploads/2008/11/excelfindandreplacenotworking.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; margin-left: 0px; border-left-width: 0px; margin-right: 0px" title="Excel find and replace not working." src="http://blog.wisefaq.com/wp-content/uploads/2008/11/excelfindandreplacenotworking-thumb.jpg" border="0" alt="Excel find and replace not working." width="335" height="179" align="right" /></a></p>
<p>I’m doing some analysis of Help Desk data, and I often use Excel for this task.  Now I know a helpdesk caller did log a problem with the subject “five things I hate about my iPhone”.</p>
<p>But Excel couldn’t find it (see picture right).</p>
<p>The problem was caused by the Excel feature “<a href="http://support.microsoft.com/kb/288291">Find by format</a>” feature (red dot).  To turn it off, click on the Format button (green dot), and then select the Clear option.</p>
<p><a title="Bookmark and Share" onclick="window.open('http://www.addthis.com/bookmark.php?wt=nw&amp;pub=DaleOz&amp;url='+encodeURIComponent(location.href)+'&amp;title='+encodeURIComponent(document.title), 'addthis', 'scrollbars=yes,menubar=no,width=620,height=520,resizable=yes,toolbar=no,location=no,status=no,screenX=200,screenY=100,left=200,top=100'); return false;" href="http://www.addthis.com/bookmark.php" target="_blank"><img src="http://s9.addthis.com/button1-share.gif" border="0" alt="Bookmark and Share" width="125" height="16" /></a></p>
<p>Related posts:<ol><li><a href='http://blog.wisefaq.com/2010/01/21/remove-hidden-data-from-microsoft-office-documents/' rel='bookmark' title='Permanent Link: Remove hidden data from Microsoft Office documents.'>Remove hidden data from Microsoft Office documents.</a></li>
<li><a href='http://blog.wisefaq.com/2008/02/26/how-to-use-vlookup-on-excel/' rel='bookmark' title='Permanent Link: How to use VLOOKUP on Microsoft Excel'>How to use VLOOKUP on Microsoft Excel</a></li>
<li><a href='http://blog.wisefaq.com/2008/07/24/date-mail-merge-bug-fixed-in-office-2007/' rel='bookmark' title='Permanent Link: Date Mail Merge Bug fixed in Office 2007'>Date Mail Merge Bug fixed in Office 2007</a></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.wisefaq.com/2008/11/25/microsoft-office-excel-cannot-find-the-data-youre-searching-for/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>How to use VLOOKUP on Microsoft Excel</title>
		<link>http://blog.wisefaq.com/2008/02/26/how-to-use-vlookup-on-excel/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=how-to-use-vlookup-on-excel</link>
		<comments>http://blog.wisefaq.com/2008/02/26/how-to-use-vlookup-on-excel/#comments</comments>
		<pubDate>Tue, 26 Feb 2008 20:57:42 +0000</pubDate>
		<dc:creator>Dale</dc:creator>
				<category><![CDATA[Excel]]></category>
		<category><![CDATA[How To]]></category>
		<guid isPermaLink="false">http://blog.wisefaq.com/?p=316</guid>
		<description><![CDATA[VLookup allows you to check to see if cell A exists in a range of cells.  This might be useful if you want to compare two lists of names, or DVD&#8217;s for example. Just like the example pictured here: (click on the picture to see all of it) The formula used above is: =VLOOKUP(A6,DVDsIown!A:A,1,FALSE) It&#8217;s [...]
Related posts:<ol><li><a href='http://blog.wisefaq.com/2008/11/25/microsoft-office-excel-cannot-find-the-data-youre-searching-for/' rel='bookmark' title='Permanent Link: Microsoft Office Excel cannot find the data you&#8217;re searching for.'>Microsoft Office Excel cannot find the data you&#8217;re searching for.</a></li>
<li><a href='http://blog.wisefaq.com/2009/01/05/excel-merging-columns-using-the-concatenate-function/' rel='bookmark' title='Permanent Link: Excel &#8211; Merging columns using the Concatenate function'>Excel &#8211; Merging columns using the Concatenate function</a></li>
<li><a href='http://blog.wisefaq.com/2010/01/04/excel-how-do-i-calculate-the-date-24-weeks-from-today/' rel='bookmark' title='Permanent Link: Excel: how do I calculate the date 24 weeks from today?'>Excel: how do I calculate the date 24 weeks from today?</a></li>
</ol>
Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>VLookup allows you to check to see if cell A exists in a range of cells.  This might be useful if you want to compare two lists of names, or DVD&#8217;s for example.</p>
<p>Just like the example pictured here:</p>
<p><a href="http://blog.wisefaq.com/wp-content/uploads/2008/02/vlookup-example.jpg"><img border="0" width="571" src="http://blog.wisefaq.com/wp-content/uploads/2008/02/vlookup-example-thumb.jpg" alt="vlookup_example" height="280" style="border: 0px" /></a></p>
<p>(click on the picture to see all of it)</p>
<p>The formula used above is: <font face="Courier">=VLOOKUP(A6,DVDsIown!A:A,1,FALSE)</font></p>
<p>It&#8217;s simple once you get the hang of it.  You can download the Excel spreadsheet I used above, <a href="http://blog.wisefaq.com/wp-content/uploads/2008/02/vlookup_example.zip">here.</a></p>
<p><u>References:<br />
</u><a href="http://office.microsoft.com/client/helppreview.aspx?AssetID=HP100698351033&amp;ns=EXCEL&amp;lcid=3081&amp;CTT=3&amp;Origin=HP100698321033">Microsoft Excel Online Help: VLookup reference</a><br />
<a href="http://www.techonthenet.com/excel/formulas/vlookup.php" title="http://www.techonthenet.com/excel/formulas/vlookup.php">Tech on the net: Excel VLookup Function</a></p>
<p>Related posts:<ol><li><a href='http://blog.wisefaq.com/2008/11/25/microsoft-office-excel-cannot-find-the-data-youre-searching-for/' rel='bookmark' title='Permanent Link: Microsoft Office Excel cannot find the data you&#8217;re searching for.'>Microsoft Office Excel cannot find the data you&#8217;re searching for.</a></li>
<li><a href='http://blog.wisefaq.com/2009/01/05/excel-merging-columns-using-the-concatenate-function/' rel='bookmark' title='Permanent Link: Excel &#8211; Merging columns using the Concatenate function'>Excel &#8211; Merging columns using the Concatenate function</a></li>
<li><a href='http://blog.wisefaq.com/2010/01/04/excel-how-do-i-calculate-the-date-24-weeks-from-today/' rel='bookmark' title='Permanent Link: Excel: how do I calculate the date 24 weeks from today?'>Excel: how do I calculate the date 24 weeks from today?</a></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.wisefaq.com/2008/02/26/how-to-use-vlookup-on-excel/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
