我有 2 张 excel 表(使用 Microsoft excel 2011 for mac,但在 excel 2010 上也尝试过同样的操作)
sheet1(Column D)
foo
bar
sheet2
abc cde foo
sfd sdf dgf
bar
我使用条件格式应用了 3 条不同的规则:
1. 如果 Sheet2 中的任何数据与 Sheet1(ColumnD) 匹配 - 将文本设为蓝色
2. 如果 sheet2 中有任何重复值 - 将文本设为黄色
3. 如果以上2 不存在 - 留空
4. 如果同时满足规则 1 和规则 22 - 将文本设为绿色
规则 4 可以是什么?
规则:
Rule 1 # =ISERROR(MATCH(A1,Sheet1!$D:$D,A1,0))=FALSE
Rule 2 # Highlight Duplicate values with yellow text
Rule 3 # =ISBLANK($1:$1048576)
Rule 4 # (Not sure what to have as formula)