本文介绍了匹配函数以匹配多个值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有两列
Column A Column B
Apple A
banana B
Grape C
Apple D
Banana F
现在我想找到包含数据 Apple
& 的行的行号D
.
Now I want to find the row number for row which has data Apple
& D
.
他们是否可以使用Match
函数来获取行号?
Is their a way to use Match
function to get the row number?
推荐答案
替代,不需要数组输入:
Alternate, does not require array entry:
=MATCH(TRUE,INDEX(A1:A5&B1:B5="Apple"&"D",),0)
这篇关于匹配函数以匹配多个值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!