【发布时间】:2020-02-22 05:09:22
【问题描述】:
我有一个可以工作的 lColorCounter 代码,但速度很慢。有没有更快的方法来循环使用 lColorCounter?
Dim rng As Range
Dim lColorCounter As Long
Dim rngCell As Range
Set rng = Sheets("MASTER LINE LIST").Range("C2:Z2000")
lColorCounter = 0
For Each rngCell In rng
'Checking BLUE color
If Cells(rngCell.Row, rngCell.Column).DisplayFormat.Interior.Color = RGB(0, 176, 240) Then
lColorCounter = lColorCounter + 1
End If
Next
Sheets("Status").Range("C5") = lColorCounter
lColorCounter = 0
For Each rngCell In rng
'Checking Yellor color
If Cells(rngCell.Row, rngCell.Column).DisplayFormat.Interior.Color = RGB(255, 255, 0) Then
lColorCounter = lColorCounter + 1
End If
Next
Sheets("Status").Range("B5") = lColorCounter
【问题讨论】:
标签: excel vba performance loops counter