#1   Report Post  
ktisqj
 
Posts: n/a
Default blinking cell

Is there a possibility to make a cell content blink under certain conditions
(as in conditional formatinf for example...)?
Thanks
  #2   Report Post  
Ian
 
Posts: n/a
Default

No

--
Ian
--
"ktisqj" wrote in message
...
Is there a possibility to make a cell content blink under certain
conditions
(as in conditional formatinf for example...)?
Thanks



  #3   Report Post  
Alan
 
Posts: n/a
Default

It can be done by using code, but its a really bad idea.
Using such code causes more problems than enough. Blinking or flashing are
things that were not regarded as important by the creators of Excel it would
appear, there's no built in function similar to that in Word for example.
Regards,
Alan.
"ktisqj" wrote in message
...
Is there a possibility to make a cell content blink under certain
conditions
(as in conditional formatinf for example...)?
Thanks



  #4   Report Post  
JE McGimpsey
 
Posts: n/a
Default

Yes, with VBA.

However, note that blinking text is a violation of Section 508 (29
U.S.C. 794d) for government sites in the US, as certain blink rates can
cause seizures in epileptics.

Besides that, it's annoying as hell.

However, if you search the archives:

http://groups.google.com/advanced_gr...ugroup=*excel*

you'll undoubtedly find a way.


In article ,
ktisqj wrote:

Is there a possibility to make a cell content blink under certain conditions
(as in conditional formatinf for example...)?

  #5   Report Post  
Alan
 
Posts: n/a
Default


"JE McGimpsey" wrote in message
...
Yes, with VBA.

However, note that blinking text is a violation of Section 508 (29
U.S.C. 794d) for government sites in the US, as certain blink rates can
cause seizures in epileptics.

Besides that, it's annoying as hell.

However, if you search the archives:

http://groups.google.com/advanced_gr...ugroup=*excel*

you'll undoubtedly find a way.


In article ,
ktisqj wrote:

Is there a possibility to make a cell content blink under certain
conditions
(as in conditional formatinf for example...)?





  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default blinking cell

try this

when you wrote under process it will blink

--------------------

Public Const TextToFind = "Under Process"

Public RunWhen As Double

Sub StartBlink()
Dim LopX As Long
Dim LopY As Long

On Error Resume Next
For LopX = 1 To 15
For LopY = 1 To 100
If InStr(Trim(LCase(Cells(LopY, LopX))), LCase(TextToFind)) 0
Then
If Cells(LopY, LopX).Font.Color = vbRed Then
Cells(LopY, LopX).Font.Color = vbBlack
Else
Cells(LopY, LopX).Font.Color = vbRed
End If
End If
Next
Next
RunWhen = Now + TimeSerial(0, 0, 1)
Application.OnTime RunWhen, "'" & ThisWorkbook.Name & "'!StartBlink", ,
True
Err.Clear
End Sub


Sub StopBlink()
Dim LopX As Long
Dim LopY As Long

On Error Resume Next
For LopX = 1 To 15
For LopY = 1 To 100
If InStr(Trim(LCase(Cells(LopY, LopX))), LCase(TextToFind)) 0
Then
Cells(LopY, LopX).Font.Color = vbBlack
End If
Next
Next
RunWhen = 0
Application.OnTime RunWhen, "'" & ThisWorkbook.Name & "'!StartBlink", ,
False
Err.Clear
End Sub

------------


"ktisqj" wrote:

Is there a possibility to make a cell content blink under certain conditions
(as in conditional formatinf for example...)?
Thanks

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
macro help thephoenix12 Excel Discussion (Misc queries) 4 July 15th 05 05:57 PM
Cell color based upon cell value My View Excel Discussion (Misc queries) 11 July 6th 05 03:59 AM
cell color index comparison MINAL ZUNKE New Users to Excel 1 June 30th 05 07:11 AM
Cell Change Color - Need Help alani New Users to Excel 3 June 29th 05 03:50 PM
VLookup resulting in a blank cell... KempensBoerke Excel Worksheet Functions 1 October 28th 04 09:57 PM


All times are GMT +1. The time now is 05:27 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"