简体   繁体   English

从Google表格到Excel的数组公式INDEX MATCH MATCH

[英]Array Formula from Google Sheets to Excel INDEX MATCH MATCH

this topic has been discussed in some formats, but not specifically this one. 已经以某些格式讨论了该主题,但没有专门讨论该主题。 I have used an array formula in Google Sheets that works, but does not work when exported to Excel. 我在Google表格中使用了有效的数组公式,但是在导出到Excel时不起作用。 Can you help me modify the formula so that it works in Excel? 您可以帮我修改公式,使其在Excel中起作用吗?

=ArrayFormula(index('Technical Lookup Tables'!J14:L17, MATCH(C39&C40,'Technical Lookup Tables'!H14:H17&'Technical Lookup Tables'!I14:I17,0))) = ArrayFormula(index('Technical Lookup Table'!J14:L17,MATCH(C39&C40,'Technical Lookup Table'!H14:H17&'Technical Lookup Table'!I14:I17,0)))

This is what the reference table looks like: 这是参考表的样子:

在此处输入图片说明

And this is the output: 这是输出:

在此处输入图片说明

此公式可以在Excel中写为非数组公式:

=index('Technical Lookup Tables'!J14:L17, MATCH(C39&C40,index('Technical Lookup Tables'!H14:H17&'Technical Lookup Tables'!I14:I17,0),0))

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM