本文介绍了索引比对x 2?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在使用以下索引匹配公式:
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))
我正在尝试在工作表数据上查找vlaue,如果找不到该值,则在工作表联系人上查找该值.
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.
这似乎总是返回0.
请有人可以告诉我我要去哪里了吗?
Please can someone show me where i am going wrong?
推荐答案
您缺少第二个INDEX上的MATCH:
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)))
这篇关于索引比对x 2?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!