Here is my
VB text:
Dim Nexttime
Sub Toggle_sheets()
Dim i
Nexttime = Now + TimeValue("00:00:30")
i = ActiveSheet.Index + 1
Range("b1").Select
ActiveCell.FormulaR1C1 = ""
If i 4 Then i = 1
ActiveWorkbook.Worksheets(i).Activate
Application.OnTime Nexttime, "Toggle_sheets"
End Sub
And what I want to add is a timer inside of this so that:
Range("b1").Select
ActiveCell.FormulaR1C1 = ""
would happen every 00:00:01
Can someone help me?
Thanks
Tyson