我想在Excel中执行以下操作
IF(any cell in Column D = any cell in Column C AND any cell in Column B = any cell in Column A)
Display TRUE in Column E
最好在这里使用VLOOKUP还是IF?
希望这能解释我的需要!
提前致谢
答案 0 :(得分:1)
您可以像这样使用COUNTIF():
在单元格F1中
=COUNTIF(B:B,A1)
并将其向下拖动到所有列F
在细胞G1中
=COUNTIF(D:D,C1)
并向下拖动所有列G
然后在结果单元格中
=IF(SUM(SUM(F:F),SUM(G:G)) > 0, TRUE, FALSE)