<?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 with a Variable Column</title>
	<atom:link href="http://www.dailydoseofexcel.com/archives/2004/10/06/vlookup-with-a-variable-column/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dailydoseofexcel.com/archives/2004/10/06/vlookup-with-a-variable-column/</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: Dick Kusleika</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/10/06/vlookup-with-a-variable-column/#comment-65777</link>
		<dc:creator>Dick Kusleika</dc:creator>
		<pubDate>Tue, 23 Aug 2011 22:19:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=795#comment-65777</guid>
		<description>&lt;p&gt;&lt;a href=&quot;http://www.dailydoseofexcel.com/archives/2010/09/22/case-sensitive-lookup/&quot; rel=&quot;nofollow&quot;&gt;http://www.dailydoseofexcel.com/archives/2010/09/22/case-sensitive-lookup/&lt;/a&gt;&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p><a href="http://www.dailydoseofexcel.com/archives/2010/09/22/case-sensitive-lookup/" rel="nofollow">http://www.dailydoseofexcel.com/archives/2010/09/22/case-sensitive-lookup/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Griff</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/10/06/vlookup-with-a-variable-column/#comment-65756</link>
		<dc:creator>Griff</dc:creator>
		<pubDate>Mon, 22 Aug 2011 17:14:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=795#comment-65756</guid>
		<description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;I have a problem using VLOOKUP that I hope someone here can help with. I&#039;m doing a VLOOKUP to a source range that has alphanumeric values which are sometime differentiated only by by upper/lower case which VLOOKUP cannot handle.&lt;/p&gt;
&lt;p&gt;Example: 0014000000RZBAx and 0014000000RZBAX. VLOOKUP sees these as exact matches even thought the last value is different &#039;z&#039; versus &#039;Z&#039;.&lt;/p&gt;
&lt;p&gt;Any suggestions?  Would I be better off using a different function?&lt;/p&gt;
&lt;p&gt;Thanks very much.&lt;/p&gt;
&lt;p&gt;Griff Jacobsen&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>I have a problem using VLOOKUP that I hope someone here can help with. I&#8217;m doing a VLOOKUP to a source range that has alphanumeric values which are sometime differentiated only by by upper/lower case which VLOOKUP cannot handle.</p>
<p>Example: 0014000000RZBAx and 0014000000RZBAX. VLOOKUP sees these as exact matches even thought the last value is different &#8216;z&#8217; versus &#8216;Z&#8217;.</p>
<p>Any suggestions?  Would I be better off using a different function?</p>
<p>Thanks very much.</p>
<p>Griff Jacobsen</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Franco</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/10/06/vlookup-with-a-variable-column/#comment-51029</link>
		<dc:creator>John Franco</dc:creator>
		<pubDate>Wed, 22 Sep 2010 00:21:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=795#comment-51029</guid>
		<description>&lt;p&gt;Hi Dilip,&lt;/p&gt;
&lt;p&gt;Here&#039;s a solution...&lt;/p&gt;
&lt;p&gt;Assuming the dates 8/1, 8/2, etc. are corresponding in &quot;monthly&quot; and &quot;weekly&quot; sheets.&lt;/p&gt;
&lt;p&gt;You can write this formula at the &quot;weekly&quot; sheet: =INDEX(monthly!$A$2:$E$5,MATCH($A3,monthly!B$2:B$5,0),1)&lt;/p&gt;
&lt;p&gt;The above formula would retrieve &quot;John&quot; from &quot;monthly&quot; sheet&lt;/p&gt;
&lt;p&gt;Pay special attention to the semi-absolute references: $A3 and B$2:B$5 in the formula. This allows you to copy the formula in the &quot;weekly&quot; sheet.&lt;/p&gt;
&lt;p&gt;&quot;Weekly&quot; sheet looks like this:&lt;/p&gt;
&lt;p&gt;A,B,C,D,E&lt;br&gt;
1) Shift Sunday Monday Tuesday Wednesday&lt;br&gt;
2) 8/1 8/2 8/3 8/4&lt;br&gt;
3) A John Smith Bob Sam&lt;br&gt;
4) B Smith John Sam Bob&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Hi Dilip,</p>
<p>Here&#8217;s a solution&#8230;</p>
<p>Assuming the dates 8/1, 8/2, etc. are corresponding in &#8220;monthly&#8221; and &#8220;weekly&#8221; sheets.</p>
<p>You can write this formula at the &#8220;weekly&#8221; sheet: =INDEX(monthly!$A$2:$E$5,MATCH($A3,monthly!B$2:B$5,0),1)</p>
<p>The above formula would retrieve &#8220;John&#8221; from &#8220;monthly&#8221; sheet</p>
<p>Pay special attention to the semi-absolute references: $A3 and B$2:B$5 in the formula. This allows you to copy the formula in the &#8220;weekly&#8221; sheet.</p>
<p>&#8220;Weekly&#8221; sheet looks like this:</p>
<p>A,B,C,D,E<br />
1) Shift Sunday Monday Tuesday Wednesday<br />
2) 8/1 8/2 8/3 8/4<br />
3) A John Smith Bob Sam<br />
4) B Smith John Sam Bob</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dilip</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/10/06/vlookup-with-a-variable-column/#comment-48461</link>
		<dc:creator>Dilip</dc:creator>
		<pubDate>Fri, 30 Jul 2010 06:18:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=795#comment-48461</guid>
		<description>&lt;p&gt;Can someone help me solve this problem?  I have show sheets. Monthly sheet looks like this:&lt;/p&gt;
&lt;p&gt;Name   8/1  8/2  8/3  8/4 8/5 ...&lt;br&gt;
John    A    B    D    C&lt;br&gt;
Smith   B    A    C    D&lt;br&gt;
Bob     D    C    A    B&lt;br&gt;
Sam     C    D    B    A &lt;/p&gt;
&lt;p&gt;Weekly sheet looks like this:&lt;/p&gt;
&lt;p&gt;Shift     Sunday  Monday  Tuesday  Wednesday&lt;br&gt;
            8/1       8/2     8/3       8/4&lt;br&gt;
  A        John      Smith    Bob       Sam&lt;br&gt;
  B        Smith     John     Sam       Bob&lt;/p&gt;
&lt;p&gt;What I want to do is populate names of Weekly sheet when I update monthly sheet.  So date in weekly should match with date of monthly sheet and name from monthly sheet should be populated based on shift (e.g. A shift on 8/2 should result in Smith)&lt;/p&gt;
&lt;p&gt;Appreciate your help.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Can someone help me solve this problem?  I have show sheets. Monthly sheet looks like this:</p>
<p>Name   8/1  8/2  8/3  8/4 8/5 &#8230;<br />
John    A    B    D    C<br />
Smith   B    A    C    D<br />
Bob     D    C    A    B<br />
Sam     C    D    B    A </p>
<p>Weekly sheet looks like this:</p>
<p>Shift     Sunday  Monday  Tuesday  Wednesday<br />
            8/1       8/2     8/3       8/4<br />
  A        John      Smith    Bob       Sam<br />
  B        Smith     John     Sam       Bob</p>
<p>What I want to do is populate names of Weekly sheet when I update monthly sheet.  So date in weekly should match with date of monthly sheet and name from monthly sheet should be populated based on shift (e.g. A shift on 8/2 should result in Smith)</p>
<p>Appreciate your help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: HoKe</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/10/06/vlookup-with-a-variable-column/#comment-37937</link>
		<dc:creator>HoKe</dc:creator>
		<pubDate>Sat, 14 Feb 2009 03:21:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=795#comment-37937</guid>
		<description>&lt;p&gt;Hi ATIF&lt;br&gt;
i have a solution ;)&lt;br&gt;
=vlookup($A$2;sheet1!$A:$T;column(C3);false)&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Hi ATIF<br />
i have a solution <img src='http://www.dailydoseofexcel.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> <br />
=vlookup($A$2;sheet1!$A:$T;column(C3);false)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sievert,L.</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/10/06/vlookup-with-a-variable-column/#comment-37792</link>
		<dc:creator>Sievert,L.</dc:creator>
		<pubDate>Thu, 05 Feb 2009 23:11:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=795#comment-37792</guid>
		<description>&lt;p&gt;Alison - Since you only have two variables (type and volume) have you tried using an INDEX(MATCH,MATCH)?&lt;br&gt;
The Lookup Wizard under Tools works great if you are unfamiliar - you just have to alter the formula once it is created for your needs.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Alison &#8211; Since you only have two variables (type and volume) have you tried using an INDEX(MATCH,MATCH)?<br />
The Lookup Wizard under Tools works great if you are unfamiliar &#8211; you just have to alter the formula once it is created for your needs.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alison S</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/10/06/vlookup-with-a-variable-column/#comment-37775</link>
		<dc:creator>Alison S</dc:creator>
		<pubDate>Thu, 05 Feb 2009 16:59:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=795#comment-37775</guid>
		<description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I have a table with costs in by stationary type and volume, so there two variables to look up to bring back a value.  I want a cost to be returned from the table once someone enters the volume and the stationary type.  I was trying a combination of VLOOKUP and IF formula, but I can&#039;t get it too work, maybe I am doing the wrong thing or have too many/not enough brackets?&lt;/p&gt;
&lt;p&gt;Can anyone help?&lt;/p&gt;
&lt;p&gt;=IF(C32=C9,VLOOKUP(C31,A10:G15,2)),E25(C32=D9,VLOOKUP(C31,A10:G15,3)),IF(C32=E9,VLOOKUP(C31,A10:G15,4)),IF(C32=F9,VLOOKUP(C31,A10:G15,4)),IF(C32=G9,VLOOKUP(C31,A10:G15,5))&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I have a table with costs in by stationary type and volume, so there two variables to look up to bring back a value.  I want a cost to be returned from the table once someone enters the volume and the stationary type.  I was trying a combination of VLOOKUP and IF formula, but I can&#8217;t get it too work, maybe I am doing the wrong thing or have too many/not enough brackets?</p>
<p>Can anyone help?</p>
<p>=IF(C32=C9,VLOOKUP(C31,A10:G15,2)),E25(C32=D9,VLOOKUP(C31,A10:G15,3)),IF(C32=E9,VLOOKUP(C31,A10:G15,4)),IF(C32=F9,VLOOKUP(C31,A10:G15,4)),IF(C32=G9,VLOOKUP(C31,A10:G15,5))</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sievert,L.</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/10/06/vlookup-with-a-variable-column/#comment-37743</link>
		<dc:creator>Sievert,L.</dc:creator>
		<pubDate>Wed, 04 Feb 2009 17:07:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=795#comment-37743</guid>
		<description>&lt;p&gt;Perfect - Thank you! Just one more if you wouldn&#039;t mind...&lt;br&gt;
How would I modify this if I wanted to use this on something similar but horizontal (using the data from before for ease..)&lt;br&gt;
now the dates in ascending order are in column A, a data lable in column B, and times of day are now across the top in row 1.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Perfect &#8211; Thank you! Just one more if you wouldn&#8217;t mind&#8230;<br />
How would I modify this if I wanted to use this on something similar but horizontal (using the data from before for ease..)<br />
now the dates in ascending order are in column A, a data lable in column B, and times of day are now across the top in row 1.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dick Kusleika</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/10/06/vlookup-with-a-variable-column/#comment-37720</link>
		<dc:creator>Dick Kusleika</dc:creator>
		<pubDate>Wed, 04 Feb 2009 04:30:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=795#comment-37720</guid>
		<description>&lt;p&gt;Make the &#039;reference&#039; argument of the INDEX function an OFFSET function which excludes the columns you don&#039;t want.  Put in cell:&lt;/p&gt;
&lt;p&gt;B18: 1/19/2009&lt;br&gt;
B19: Cosmetics&lt;br&gt;
B20: 1:30&lt;/p&gt;
&lt;p&gt;and this formula will return the correct value as long as your dates ascend from left to right.&lt;/p&gt;
&lt;div style=&quot;overflow: auto; white-space: nowrap;&quot; class=&quot;codecolorer-container text default&quot;&gt;&lt;div style=&quot;white-space: nowrap;&quot; class=&quot;text codecolorer&quot;&gt;=INDEX(OFFSET(A1,2,MATCH(B18,$B$2:$G$2,FALSE),11,7),MATCH(B20,A3:A13,FALSE),MATCH(B19,B1:G1,FALSE))&lt;/div&gt;&lt;/div&gt;
</description>
		<content:encoded><![CDATA[<p>Make the &#8216;reference&#8217; argument of the INDEX function an OFFSET function which excludes the columns you don&#8217;t want.  Put in cell:</p>
<p>B18: 1/19/2009<br />
B19: Cosmetics<br />
B20: 1:30</p>
<p>and this formula will return the correct value as long as your dates ascend from left to right.</p>
<div style="overflow: auto; white-space: nowrap;" class="codecolorer-container text default">
<div style="white-space: nowrap;" class="text codecolorer">=INDEX(OFFSET(A1,2,MATCH(B18,$B$2:$G$2,FALSE),11,7),MATCH(B20,A3:A13,FALSE),MATCH(B19,B1:G1,FALSE))</div>
</div>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sievert,L.</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/10/06/vlookup-with-a-variable-column/#comment-37716</link>
		<dc:creator>Sievert,L.</dc:creator>
		<pubDate>Tue, 03 Feb 2009 21:57:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=795#comment-37716</guid>
		<description>&lt;p&gt;Looking for help with formula for 3 variables. I&#039;ve used Index(match, match) to pull from a table with 2 variables but having no luck with 3. The columns have two lables, a name (apparel, cosmetics, jewelry) and date (1/1/09, 1/2/09, ect... (trying to paste in an example without it getting messed up &lt;/p&gt;
&lt;p&gt;So what can I used to find cosmetics, 1/18/09 12:00 am?&lt;/p&gt;
&lt;p&gt;ApparelCosmeticsJewelryApparelCosmeticsJewerly&lt;br&gt;
1/18/20091/18/20091/18/20091/19/20091/19/20091/19/2009&lt;br&gt;
12:00 AM123456&lt;br&gt;
12:30 AM123456&lt;br&gt;
1:00 AM123456&lt;br&gt;
1:30 AM123456&lt;br&gt;
2:00 AM123456&lt;br&gt;
2:30 AM123456&lt;br&gt;
3:00 AM123456&lt;br&gt;
3:30 AM123456&lt;br&gt;
4:00 AM123456&lt;br&gt;
4:30 AM123456&lt;br&gt;
5:00 AM123456&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Looking for help with formula for 3 variables. I&#8217;ve used Index(match, match) to pull from a table with 2 variables but having no luck with 3. The columns have two lables, a name (apparel, cosmetics, jewelry) and date (1/1/09, 1/2/09, ect&#8230; (trying to paste in an example without it getting messed up </p>
<p>So what can I used to find cosmetics, 1/18/09 12:00 am?</p>
<p>ApparelCosmeticsJewelryApparelCosmeticsJewerly<br />
1/18/20091/18/20091/18/20091/19/20091/19/20091/19/2009<br />
12:00 AM123456<br />
12:30 AM123456<br />
1:00 AM123456<br />
1:30 AM123456<br />
2:00 AM123456<br />
2:30 AM123456<br />
3:00 AM123456<br />
3:30 AM123456<br />
4:00 AM123456<br />
4:30 AM123456<br />
5:00 AM123456</p>
]]></content:encoded>
	</item>
</channel>
</rss>

