|
Question : Nine (9) sheets vlookup with Indirect ?
|
|
Hello!
I got this work with one sheet, but I don't have any idea how to get it work with nine sheets. Please somebody help:
=VLOOKUP(C2;INDIRECT(B1&$A$1);1;FALSE)
B1 = sheet name a1= data range
What I should do that it would check all the other sheets ? I have sheet name list at the first row..b1=sheet1! c1=sheet2! and so on...
I have quite much hurry with this...
|
|
Answer : Nine (9) sheets vlookup with Indirect ?
|
|
If you are trying to find of a number is any of nine sheets then use a formula such as:
=IF(COUNTIF(Sheet1!A:A,C2)+COUNTIF(Sheet2!A:A,C2)+COUNTIF(Sheet3!A:A,C2)+COUNTIF(Sheet4!A:A,C2)+COUNTIF(Sheet5!A:A,C2)+COUNTIF(Sheet6!A:A,C2)+COUNTIF(Sheet7!A:A,C2)+COUNTIF(Sheet8!A:A,C2)+COUNTIF(Sheet9!A:A,C2)>0,"Exists","Does Not Exist")
Kevin
|
|
|
|