Sheet B contains values in multiple columns and rows
I would like to find out if the value in Sheet A is present in Sheet B. If the value exists, it should result as 'match'. If the value doesn't exists then should result as 'No match
Note: Since its an array formula, based on your excel version need to press CTRL+SHIFT+ENTER , O365 & Excel 2021 Users don't need to press CTRL+SHIFT+ENTER!
发布评论
评论(1)
您可以使用
sum()
或sumproduct()
或 max> max()sum()
sum() > row()函数•单元格中使用的公式
b2
上面公式返回a boolean logic ,它变成
1
&0
使用double Unary
。然后自定义格式为•也许您可以将上述包装在
中,if()
,在单元c2
中公式,基于您的Excel版本需要按 ctrl + shift + enter , o365 & excel 2021 用户无需按 ctrl + shift + enter !
You may try this way, using either
SUM()
orSUMPRODUCT()
orMAX()
withROW()
Function• Formula used in cell
B2
The above formula returns a Boolean Logic which is turned into
1
&0
using adouble unary
. And then custom formatted as• Perhaps you can wrap the above within an
IF()
as well, in cellC2
Note: Since its an array formula, based on your excel version need to press CTRL+SHIFT+ENTER , O365 & Excel 2021 Users don't need to press CTRL+SHIFT+ENTER!