问题
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