معذرة من الإخوة الأكارم جزاهم الله كل خير
تم إضافة مؤقت للكود السابق لصبح الكود الجديد كالتالي
Dim count As Integer
Sub Blink()
Dim c As Range
Dim x As Range
If count = 10 Then
End
End If
Set x = Range("L9:L39")
For Each c In Range("L9:L39").Cells
If c.Interior.ColorIndex = -4142 Then
xxxxx = Application.WorksheetFunction.Min(x)
If c.Value = xxxxx Then
c.Interior.ColorIndex = 3
End If
Else
c.Interior.ColorIndex = 0
End If
Next c
BlinkTime = Now() + 1 / 86400
Application.OnTime BlinkTime, "Blink"
count = count + 1
End Sub