在excel表格中,我想在整个表格中数值大于或等于100时整行变色,如何操作?谢谢!

2024-11-02 23:57:02
推荐回答(4个)
回答(1):

亲,office2003实现不了你这个功能。

回答(2):

Private Sub Worksheet_Change(ByVal Target As Range)
rr = Target.Row
If Target.Value >= 100 Then
cl = 3
Else
cl = 0
End If
Rows(rr).Interior.ColorIndex = cl
End Sub

回答(3):

如数据在A列
首先选择数据区域,如A1:P50
设置条件格式,公式
=AND(ISNUMBER($A1),$A1>100)
选择颜色,确认

回答(4):

采用格式菜单的条件格式