匹配两列的公式,如果匹配则第三列中的 return 值

Formula to match two columns then return value in a third column if match

excel 公式需要匹配 A 列和 B 列,如果它们相同,如果它们匹配,则在与 A 列相同的行上显示 True。

    A       B       C

1  Mustang   Camaro  True
2  Corvette  F150    False
3  Charger   Impala  False
4  Firebird  Mustang False

公式为:

=COUNTIF($B:$B,A1)>0