Is it possible to run a vba code for a set amount of time?

Xalova

Board Regular
Joined
Feb 11, 2021
Messages
80
Office Version
  1. 365
Platform
  1. Windows
  2. Mobile
For example i have a code that will select a cell on the startup of the workbook. i want the user to see which cell is currently activated by highlighting it for 5 seconds in a different color. Is that possible? And if yes, how?
 

Excel Facts

Select a hidden cell
Somehide hide payroll data in column G? Press F5. Type G1. Enter. Look in formula bar while you arrow down through G.
To your workbook code module:
VBA Code:
Public Sub Mess()
    MsgBox "Your time is out..."
    ActiveWorkbook.Sheets("Sheet1").Range("B2").Interior.ColorIndex = xlColorIndexNone
End Sub

To thisworkbook module:
VBA Code:
Private Sub Workbook_Open()
    Application.OnTime Now + TimeValue("00:00:05"), "Mess"
    With ActiveWorkbook.Sheets("Sheet1").Range("B2")
        .Interior.ColorIndex = 6
        .Select
    End With
End Sub
 
Upvote 0
Solution
To your workbook code module:
VBA Code:
Public Sub Mess()
    MsgBox "Your time is out..."
    ActiveWorkbook.Sheets("Sheet1").Range("B2").Interior.ColorIndex = xlColorIndexNone
End Sub

To thisworkbook module:
VBA Code:
Private Sub Workbook_Open()
    Application.OnTime Now + TimeValue("00:00:05"), "Mess"
    With ActiveWorkbook.Sheets("Sheet1").Range("B2")
        .Interior.ColorIndex = 6
        .Select
    End With
End Sub
and thats exactly what i needed, thank you :)
 
Upvote 0

Forum statistics

Threads
1,224,823
Messages
6,181,177
Members
453,021
Latest member
Justyna P

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top