我有两列不同的值。 我想要完成的是:
1. if value of any cell in A is not in any cell of B > make cell blue
2. if value of any cell in B is not in any cell of A > make cell yellow
3. if value of any cell in A is also in any cell of B > make cell green
在B2中找到A2,制作A2& B2都是绿色
A3无处B,使A3蓝色
在B3中找到A4,使其成为绿色B8无处A,使B8黄色
A8无处B,使A8蓝色
我希望这是有道理的,并且可以使用条件格式。我无法弄清楚用于此的公式。任何帮助将不胜感激。
答案 0 :(得分:0)
请选择A2:A8,HOME>样式 - 条件格式,新规则...,使用公式确定要格式化的单元格,格式化此公式为真的值:
=MATCH($A2,$B$1:$B$10,0)
使用绿色格式和其他规则:
=ISERROR(MATCH($A2,$B$1:$B$10,0))
带蓝色格式。
选择B2:B8并重复上述步骤:
绿色:=MATCH($B2,$A$1:$A$10,0)
和黄色:=ISERROR(MATCH($B2,$A$1:$A$10,0))
。