I have a working timer in my sheet in a certain cell. I need to populate the sheet with predetmined values (in the macro or references to cell either one) and input the into a templete for a demonstration. Has anyone ever done this. My code is.. The "yeah" sub is NOT done but I wanted to get one piece working. I cannot.
Sub timer()
Application.OnTime Now + TimeValue("00:00:01"), "Increment_count"
End Sub
Sub Increment_Count()
Range("AE5").Value = Range("AE5") + TimeValue("00:00:01")
timer
Application.Run ("yeah")
End Sub
Sub STOPtimer()
Application.OnTime Now + TimeValue("00:00:01"), "Increment_count", Schedule:=False
End Sub
Sub yeah()
Dim i As Integer
For i = 2 To 31
If IsError(Cells(i, 39)) = False And IsError(Cells(32, 5)) = False Then
If Cells(i, 38) = Cells(31, 5) Then
Cells(1, 8) = Cells(i, 39)
End If
End If
Next i
End Sub