Index match x 2?

牧云@^-^@ 提交于 2019-12-24 06:53:08

问题


I am using the following index match formula:

=IFERROR(INDEX(Data!V:V,MATCH(Home!F16,Data!C:C,0)),INDEX(Contacts!E:E,Home!H16 & "*",Contacts!B:B,0))

I am trying to lookup a vlaue on sheet Data, and if the value is not found then look up the value on sheet contacts.

This always seems to be returning 0.

Please can someone show me where i am going wrong?


回答1:


You are missing the MATCH on the second INDEX:

=IFERROR(INDEX(Data!V:V,MATCH(Home!F16,Data!C:C,0)),INDEX(Contacts!E:E,MATCH(Home!H16 & "*" ,Contacts!B:B,0)))


来源:https://stackoverflow.com/questions/42983962/index-match-x-2

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!