You'll need to use VBA.
See Help for the OnTime method.
You'll need to use VBA.
See Help for the OnTime method.
Entia non sunt multiplicanda sine necessitate
Maybe like this.
In ThisWorkbook:
In a code module:![]()
Private Sub Workbook_Open() Application.OnTime Date + TimeValue("08:00"), "AddOneEveryFive" End Sub
![]()
Sub AddOneEveryFive() With Range("A1") If IsNumeric(.Value) Then .Value = .Value + 1 End With If Time < TimeValue("15:55") Then Application.OnTime Now + TimeValue("00:05"), "AddOneEveryFive" End If End Sub
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks