我希望根据F2和G2中的条目为I2单元格指定颜色:
如果F2和G2都为空,则I2为红色 如果F2和G2中的任何一个为空,则I2为琥珀色 如果F2和G2都不为空,则I2为绿色。
答案 0 :(得分:0)
假设这是指Excel:
使用级联格式:
Conditional Formatting
- > manage rules
New rule
- > Use formula to determine which cells to format
=not(and(isblank(F1),isblank(G1)))
放入框中,点击format
并选择绿色填充。单击确定New rule
- > Use formula to determine which cells to format
=or(isblank(F1),isblank(G1))
,点击format
并选择橙色填充。单击确定New rule
- > Use formula to determine which cells to format
=and(isblank(F1),isblank(G1))
,点击format
并选择红色填充。单击确定答案 1 :(得分:0)
既然你已经涵盖了所有可能性,那么两个规则就足够了。例如,将I2变为绿色,标准为' fill(在适当的情况下,它将被条件格式规则覆盖)。
选择I2然后选择HOME>样式 - 条件格式,新规则...,使用公式确定要格式化的单元格和格式化此公式的值::
=COUNTBLANK(F2:G2)=1
格式化... ,选择琥珀色,OK,OK。
然后重复红色:
=COUNTBLANK(F2:G2)=2
应用这些规则的顺序并不重要。