尝试在 VBA 中插入以下公式;
在我的专栏 KI 中想要三个条件:
- 日期是今天或更早(即项目今天或更早到期)= RED
- 日期是今天 + 最多 7 天 = 琥珀色
- 日期是今天少于 7 天 = 绿色
我正在考虑使用以下内容:
Sub ChangeColor()
lRow = Range("K" & Rows.Count).End(xlUp).Row
Set MR = Range("K3:K" & lRow)
For Each cell In MR
If cell.Value = "TODAY" Then cell.Interior.ColorIndex = 10
If cell.Value = "TODAY-7days" Then cell.Interior.ColorIndex = 9
If cell.Value = "Morethan7Days" Then cell.Interior.ColorIndex = 8
Next
End Sub
我一直在尝试,但我不知道该怎么做。
我认为我的方式是正确的,但我不确定如何编写 If date=-7days then 等等。
有人可以提供一些指导吗?:)