Return 连续满足三个条件时的值
Return value when three conditions are met in an row
System DB Type Result
1 DB1 Q1
1 DB1 Q2
1 DB2 Q1
1 DB2 Q1
我想要一个公式,如果任何其他行具有相同的系统 ID、相同的数据库 ID 但类型列中的 ID 不同,则 returns 在 'Result' 列中为 1。非常感谢任何帮助。
谢谢
使用 COUNTIFS():
=IF(COUNTIFS(A:A,A2,B:B,B2,C:C,"<>" & C2),1,"")
System DB Type Result
1 DB1 Q1
1 DB1 Q2
1 DB2 Q1
1 DB2 Q1
我想要一个公式,如果任何其他行具有相同的系统 ID、相同的数据库 ID 但类型列中的 ID 不同,则 returns 在 'Result' 列中为 1。非常感谢任何帮助。 谢谢
使用 COUNTIFS():
=IF(COUNTIFS(A:A,A2,B:B,B2,C:C,"<>" & C2),1,"")