Forum Discussion
Charlotte Mcnamee
Nov 08, 2018Copper Contributor
Index Match Error
I have an excel document with 20+ different tables. I would like my Excel formulas in my working sheet to find each table and then extract the data. =INDEX('[Inputs.xlsx]Table 1'!$A$1:$BV$10000,...
SergeiBaklan
Nov 08, 2018MVP
Hi Charlotte,
You may use INDIRECT
=INDEX(INDIRECT("'[Inputs.xlsx]Table 1'!$A$" & MATCH(...)), ..
but it works if only your file is opened.
Why don't you use Excel tables with structured references?
- Charlotte McnameeNov 08, 2018Copper Contributor
Hello Sergei.
Now it says I have too many arguments for this function. Any work arounds for this? Thanks!
- SergeiBaklanNov 08, 2018MVP
I imitated on my file, formula looks like
=INDEX(INDIRECT("'[Book1]Sheet1 plus'!$F$" & MATCH(C1,B1:B7,0) & ":$F$8"),3,0)
your one shall have the same structure
- Charlotte McnameeNov 08, 2018Copper Contributor
Thanks. I have not used structured references because I have about 100 input files (which change every year) and I want to avoid changing each one.