Forum Discussion
Daveway69
Jun 05, 2023Copper Contributor
Combining INDEX MATCH Formulas
I have a cell with a dropdown list. I am trying to INDEX MATCH from 2 tables depending on what I select from the dropdown list. Tables are called MAIN_EQUIPMENT and INSTRUMENT_ FIELD. They are loca...
HansVogelaar
Jun 05, 2023MVP
But SergeiBaklan 's formula doesn't refer to 'System & FL Codes'!B3:B112
Daveway69
Jun 05, 2023Copper Contributor
I tried it but you are right. It never pulled over from the other table.
- Daveway69Jun 06, 2023Copper ContributorI will look into that. Good suggestion.
- peiyezhuJun 05, 2023Bronze ContributorSorry,I am not what you intent to do.
If for pick item easily,why not consolidate sub tables in System & FL Codes to one sheet first?
Then it is easy to handle the dropdown box. - SergeiBaklanJun 05, 2023MVP
To handle errors formula could be
=IF( ISERROR(ROWS(INDIRECT(D4))), "no range", IFERROR( INDEX( 'System & FL Codes'!F6:F466, MATCH(Sheet4!E4, INDIRECT(D4), 0) ), "no such value" ) )