IF/VLOOKUP between multiple worksheets

  • Follow


Hello -

I am trying to identify an alternative for the following IF/VLOOKUP formula 
for 13 individual letters with matching Sheets!:
=IF(A3="A",vlookup(A!,A:H,6,FALSE),IF(A3="B",vlookup(B!,A:H,6,FALSE), etc.

Thank you in advance for your assistance.

Joe Stephens
0
Reply Utf 12/10/2009 3:21:57 AM

>=IF(A3="A",vlookup(A!,A:H,6,FALSE),

You left out the actual lookup value.

Try it like this...

A1 being the lookup value.
A3 being the sheet name.

=VLOOKUP(A1,INDIRECT("'"&A3&"'!A:H"),6,0)

-- 
Biff
Microsoft Excel MVP


"Joe" <Joe@discussions.microsoft.com> wrote in message 
news:8B69CB19-9D7C-4627-9053-2142C930E19C@microsoft.com...
> Hello -
>
> I am trying to identify an alternative for the following IF/VLOOKUP 
> formula
> for 13 individual letters with matching Sheets!:
> =IF(A3="A",vlookup(A!,A:H,6,FALSE),IF(A3="B",vlookup(B!,A:H,6,FALSE), etc.
>
> Thank you in advance for your assistance.
>
> Joe Stephens 


0
Reply T 12/10/2009 4:00:34 AM

1 Replies
971 Views

(page loaded in 0.02 seconds)

Similiar Articles:
















7/27/2012 10:24:02 AM


Reply: