Take a look at the file in post#4 of the following thread.
http://www.excelforum.com/excel-prog...-blinking.html
It uses code like the following (written and tested using Excel 2003) to have a cell blink in a sequence of three colors.
Sub SequenceColorInCell()
Const sSheetName = "Sheet1"
Const sCELL1 = "G1"
Dim myRGB_Color As Long
Dim iRGB_Color1 As Long
Dim iRGB_Color2 As Long
Dim iRGB_Color3 As Long
iRGB_Color1 = RGB(255, 0, 0)
iRGB_Color2 = RGB(0, 255, 0)
iRGB_Color3 = RGB(0, 0, 255)
'Get the current color of the status cell
myRGB_Color = Sheets(sSheetName).Range(sCELL1).Interior.Color
'Sequence to the next color
Select Case myRGB_Color
Case iRGB_Color1
Sheets(sSheetName).Range(sCELL1).Interior.Color = iRGB_Color2
Case iRGB_Color2
Sheets(sSheetName).Range(sCELL1).Interior.Color = iRGB_Color3
Case Else
Sheets(sSheetName).Range(sCELL1).Interior.Color = iRGB_Color1
End Select
End Sub
Lewis
Bookmarks