In the MICROSOFT EXCEL program - the function of blinking the
cell, and setting the color (under a certain condition IF)
Right place for such suggestion is Excel user voice https://excel.uservoice.com/, here are ideas of how to do TechComm itself better.
Thank you for your feedback. This ideas board is intended for ideas for the Microsoft Tech Community and not product specific. If you would like to post an idea for the Excel Community, please do so on their UserVoice here :
Sub Blinking_Status()
Dim BlinkingCells As Range
For Each BlinkingCells In Range("Table1[Status]")
If BlinkingCells = "On Leave" Then
BlinkingCells.Interior.Color = 255 'Red
ElseIf BlinkingCells = "On Duty" Then
BlinkingCells.Interior.Color = 14395790 'Blue
ElseIf BlinkingCells = "Waiting" Then
BlinkingCells.Interior.Color = 65535 'Yellow
End If
Next BlinkingCells
Application.OnTime Now + TimeValue("00:00:06"), "Blinking_Status", , True
End Sub
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.