Here's a recent relevant reply dug up via Google search...
----------------------------------------------
From: Bernie Deitrick (
[email protected])
Subject: Re: to blink contents in a cell
View: Complete Thread (6 articles)
Original Format
Newsgroups: microsoft.public.excel.newusers
Date: 2003-11-07 10:52:24 PST
Bill Manville has developed a procedure to produce blinking text.
Code and instructions are below.
HTH,
Bernie
MS Excel MVP
'VBA CODE EXAMPLES
'
'Created by Bill Manville
'
'To create a blinking cell:
'
'If you define a new Style (Format / Style / Flash/ Add ) and apply
'that style to the cells you want to flash, paste the following code
'into a module sheet and run the procedure Flash from Auto-Open if
'desired you will get the text flashing alternately white and red.
Dim NextTime As Date
Sub Flash()
NextTime = Now + TimeValue("00:00:01")
With ActiveWorkbook.Styles("Flash").Font
If .ColorIndex = 2 Then .ColorIndex = 3 Else .ColorIndex = 2
End With
Application.OnTime NextTime, "Flash"
End Sub
Sub StopIt()
Application.OnTime NextTime, "Flash", schedule:=False
ActiveWorkbook.Styles("Flash").Font.ColorIndex = xlAutomatic
End Sub
lakshmi said:
I want to make the contents in a cell to blink for seeking attention
----------------------------------------
hth
Max
-----------------------------------------
Please reply in newsgroup
Use xdemechanik
<at>yahoo<dot>com for email
--------------------------------------------------