*强文本* 下面的代码运行成功,但是,我需要一个将正单元格值和负单元格值视为相同并相应着色的代码
前任:
1) 0 到 4 和 0 到 -4 = 绿色 2) 5 到 9 和 -5 到 -9 = 橙色
以下代码仅适用于正值
子 changeTextColor()
GreenColor = RGB(0, 128, 0)
RedColor = RGB(255, 0, 0)
OrangeColor = RGB(255, 204, 0)
WhiteColor = RGB(255, 255, 255)
'Get number of rows in the specified column
RowsCount = Range("K2", Range("K2").End(xlDown)).Rows.Count
'Select cell
Range("K2").Select
'Loop the cells
For x = 1 To RowsCount
If ((ActiveCell.Value) <= 4) Then
ActiveCell.Interior.Color = GreenColor
ElseIf ((ActiveCell.Value) >= 5) And ((ActiveCell.Value) <= 9) Then
ActiveCell.Interior.Color = OrangeColor
ElseIf ((ActiveCell.Value) > 10) And ((ActiveCell.Value) <= 10000) Then
ActiveCell.Interior.Color = RedColor
End If
ActiveCell.Offset(1, 0).Select
Next
结束子