Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() ok got the solution for you. Module1 Sub Blink(MyStart, MyFinish) Dim c As Range For Each c In Range("C3").Cells If c.Interior.ColorIndex = 47 Then If c.Value 100 Then c.Interior.ColorIndex = 2 'White ElseIf c.Value 50 Then c.Interior.ColorIndex = 2 'White Else c.Interior.ColorIndex = 2 'White End If Else c.Interior.ColorIndex = 47 End If Next c Application.OnTime MyStart, "Blink", MyFinish End Sub .................................................. ............. ThisWorkbook Private Sub Workbook_BeforeClose(Cancel As Boolean) MyStart = BlinkTime = Now() MyFinish = BlinkTime = Now() Call Blink(MyStart, MyFinish) End Sub Private Sub Workbook_Open() MyStart = BlinkTime = Now() + TimeValue("00:00:01") MyFinish = BlinkTime = Now() + TimeValue("23:00:00") Call Blink(MyStart, MyFinish) End Su -- bhawanePosted from http://www.pcreview.co.uk/ newsgroup acces |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Working on interactive worksheet (need help with highlighting and blinking cell) | Excel Programming | |||
Blinking Cell (Worksheet restarts) | Excel Programming | |||
Blinking Cell (Worksheet restarts) | Excel Programming | |||
Blinking Cell (Worksheet restarts) | Excel Programming | |||
Blinking Cell | Excel Programming |