indi visual
Member
I'm using this to time my subs and input a cell value of how long it took.
Did I write this correctly?
Get_Time
Dim Counter As Single
Counter = Timer
'''my code
Worksheets(2).Range("A65536").End(xlUp).Offset(1).Value = _
Timer - Counter & " seconds."
End Sub
So I can see easily see which sub took how long, how do I get the sub name with the time also?
Did I write this correctly?
Get_Time
Dim Counter As Single
Counter = Timer
'''my code
Worksheets(2).Range("A65536").End(xlUp).Offset(1).Value = _
Timer - Counter & " seconds."
End Sub
So I can see easily see which sub took how long, how do I get the sub name with the time also?