我试图让它根据一个单元格中的数字来改变另一个单元格中的颜色。但我需要它,以便它可以做两种以上的颜色。
If M4 said 0-4 it would then make I4 red,
if M4 was between 5-19 I4 would be yellow,
if M4 was between 20-29 I4 would be orange,
if M4 was 30+ it would make I4 green.
答案 0 :(得分:0)
请选择I4并使用格式,条件格式...,格式化单元格如果...,自定义公式输入:
=M4>29
并为格式化样式选择绿色填充,完成。
然后按此顺序使用添加其他规则,重复如下:
=M4>19 orange
=M4>4 yellow
=M4>=0 red