Forum Discussion
Caro_Bloggs
Jun 02, 2022Copper Contributor
#REF! error in INDEX/MATCH formula
Dear all, Can someone help me with my formula? =INDEX('[COSTED_BOM_RFQ_REDUCED__FULL_SMART_LCU_20220523 (1).xlsx]Sheet0'!K11:K93;MATCH(C8;'[COSTED_BOM_RFQ_REDUCED__FULL_SMART_LCU_20220523 (1).xl...
- Jun 02, 2022
Hi Caro_Bloggs
the first part of your INDEX formula refers to just one column (K11:K93), but with the very last argument you refer to colum 11.
So if you want to return the value of column 11, the INDEX range should at least cover K11:U93
HansVogelaar
Jun 02, 2022MVP
The 11 as last argument of INDEX tells Excel to look in the 11th column f K11:K93, but that range has only 1 column. Remove that argument:
=INDEX('[COSTED_BOM_RFQ_REDUCED__FULL_SMART_LCU_20220523 (1).xlsx]Sheet0'!K11:K93;MATCH(C8;'[COSTED_BOM_RFQ_REDUCED__FULL_SMART_LCU_20220523 (1).xlsx]Sheet0'!B11:B93;0))