Hi People,
I am currently working with a stopwatch function (using a form)
At present the function i have created has two command buttons, one start and one stop which gives the date and time from clicking each button (one in a1 the other b1)
What i want it to do is not overwrite the information each time but just go to the next line (a2 and b2 etc etc), how do i do that?
Cheers
Steve
Code currently is
Private Sub CommandButton1_Click()
Range("A1").Value = Date
Range("A2").Value = Time
End Sub
Private Sub CommandButton2_Click()
Range("b1").Value = Date
Range("b2").Value = Time
End Sub