- Tham gia
- 8/6/06
- Bài viết
- 14,572
- Được thích
- 22,893
- Nghề nghiệp
- U80
Bạn hãy đối chiếu lại hàm cũ xem sao nha?!
Chúc vui!
PHP:
Option Explicit
Function CountNum(SColumns As Range, Num As Byte) As Byte
Dim Clls As Range
For Each Clls In SColumns
If Clls.Value = Num Then
With Clls.Interior
If .ColorIndex < 3 Or (.ColorIndex > 2 And Clls.Offset(1).Interior.ColorIndex > 2) Then
CountNum = CountNum + 1
End If
End With
End If
Next Clls
End Function
Chúc vui!