如何获取columnA中不存在于ColumnB中的元素的数量

问题描述 投票:1回答:3

我有两列:

A         B
Hello    Good
How      Hello
Are      Morning
You      You

我想要A中B中不存在的元素数(这里是How , Are,在这种情况下答案为2。

arrays google-sheets filter google-sheets-formula counting
3个回答
1
投票
=COUNTIF(FILTER(A:A, ISNA(MATCH(A:A, B:B, 0))),"<>")

0
投票

B中不存在]


-1
投票

尝试加总:

© www.soinside.com 2019 - 2024. All rights reserved.