发布网友 发布时间:2022-04-23 04:01
共2个回答
热心网友 时间:2023-07-14 11:00
编写个宏来实现吧,帮你写出来了
Private Sub Worksheet_Change(ByVal Target As Range)
For i = 2 To 1000
If Cells(i, 3) < 31 Then
Cells(i, 4).Interior.ColorIndex = 2
ElseIf Cells(i, 3) < 46 Then
Cells(i, 4).Interior.ColorIndex = 6
ElseIf Cells(i, 3) < 61 Then
Cells(i, 4).Interior.ColorIndex = 9
ElseIf Cells(i, 3) < 91 Then
Cells(i, 4).Interior.ColorIndex = 7
ElseIf Cells(i, 3) < 181 Then
Cells(i, 4).Interior.ColorIndex = 3
End If
Next i
End Sub
怎么用知道吧,在EXCEL里面按Alt+F11,在VB编辑器中点击sheet1,然后输入以上函数喉退出VB编辑器就行了,在excel上输入任意东西函数就启动。 这样算不算例子。。
热心网友 时间:2023-07-14 11:00
Private Sub Worksheet_Change(ByVal Target As Range) 当工作表变更,即工作表单元格更新,这个最常用。
For i = 2 To 1000 设i从2到1000,就是从第二行到1000行有较。
If Cells(i, 3) < 31 Then I是指任意的行,for循环变动。3则是指C列。
Cells(i, 4).Interior.ColorIndex = 2 同理,4是指D例。VBA里一般不用A1定位单元格而是用,cells(行,例) ElseIf Cells(i, 3) < 46 Then 当C例单元格值小于46时
Cells(i, 4).Interior.ColorIndex = 6 D例显示颜色Colorindex为颜色素引,
ElseIf Cells(i, 3) < 61 Then 同理。。。。。。。。。。。
Cells(i, 4).Interior.ColorIndex = 9
ElseIf Cells(i, 3) < 91 Then
Cells(i, 4).Interior.ColorIndex = 7
ElseIf Cells(i, 3) < 181 Then
Cells(i, 4).Interior.ColorIndex = 3
End If 结束if语句
Next i 开始循环i直到1000结束,对C例、D例进行验证并设置颜色。
End Sub--------------------------------------------------------------------------------