我有这个逻辑来为选定的单元格区域赋予单元格颜色值。
If value > 75
cell color = BLUE
Else if value > 50
cell color = RED
Else
cell color = BLACK
如何在Excel中使用此逻辑根据其值对单元格进行着色?
答案 0 :(得分:2)
将其写入适当的工作表模块( + Alt + F11 )
<强>更新强>
Private Sub Worksheet_Change(ByVal Target As Range)
Application.EnableEvents = False
If Target.Value > 75 Then
Target.Interior.Color = 12611584
ElseIf Target.Value > 50 Then
Target.Interior.Color = 255
Else
Target.Interior.Color = 0
End If
Application.EnableEvents = True
End Sub