3个回答
展开全部
选定O列,格式-条件格式-公式
=IF(O3>N3,TRUE)
点右下角格式-选择颜色
=IF(O3>N3,TRUE)
点右下角格式-选择颜色
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
Sub test()
i = 1
While Cells(i, 14).Value <> ""
If Cells(i, 15).Value > Cells(i, 14).Value Then
Cells(i, 15).Select
With Selection.Interior
.ColorIndex = 3
.Pattern = xlSolid
End With
Else
If Cells(i, 15).Value < Cells(i, 14).Value Then
Cells(i, 14).Select
With Selection.Interior
.ColorIndex = 3
.Pattern = xlSolid
End With
End If
End If
i = i + 1
Wend
End Sub
i = 1
While Cells(i, 14).Value <> ""
If Cells(i, 15).Value > Cells(i, 14).Value Then
Cells(i, 15).Select
With Selection.Interior
.ColorIndex = 3
.Pattern = xlSolid
End With
Else
If Cells(i, 15).Value < Cells(i, 14).Value Then
Cells(i, 14).Select
With Selection.Interior
.ColorIndex = 3
.Pattern = xlSolid
End With
End If
End If
i = i + 1
Wend
End Sub
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |