Embedded lookup

H

HotaG

Can a lookup be embedded in another lookup? A file has separate sheets for
each month with identical formats. A file has 13 sheets, one for each month
and a YTD sheet. Each sheet has P&L data for multiple companies and the YTD
sheet has a data entry field to identify the current month. Based on the
value in that field, the lookup function should, first, go to the correct
month's sheet, then lookup the correct value. Ex: YTD Cell A1=4 for April;
All sheets Cell A3=Sales; Col B = ABC, Inc. The lookup formula will lookup
A1, go to the April sheet, then perform the lookup function.
 
L

Luke M

Take a look at using the INDIRECT function, perhaps something like:

=VLOOKUP(A3,INDIRECT("'"&A1&"'!A:B),2,FALSE)
 
S

Steve Dunn

Modified to allow numeric value for month in A1:

=VLOOKUP(A3,INDIRECT("'"&LOOKUP(A1,{1,2,3,4,5,6,7,8,9,10,11,12},
{"January","February","March","April","May","June",
"July","August","September","October","November","December"})&
"'!A:B),2,FALSE)
 
S

Steve Dunn

Erm, got a bit carried away there, try this instead:


=VLOOKUP(A3,INDIRECT("'"&TEXT(DATE(2010,A1,1),"mmmm")&
"'!A:B),2,FALSE)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top