Ok I have work on the code, so one button starts one stops.
My code needs to be able to start more than one task (i.e walking and talking) but when one stops or both do, the stop time will align back its start time.
I.e if you started walking at 1:00 and then started talking at 1:02, there would be two start times recorded (a1 and a2). if you then stopped walking at 1:03 and stopped talking at 1:04, the program would assign the correct stop time to the correct start time
Please ignore the old code.
Any help let me know
Private Sub CommandButton1_Click()
Dim Rng As Range
Set Rng = Cells(Rows.Count, "A").End(xlUp)(2, 1)
Rng(1, 1).Value = Date
Rng(1, 2).Value = Time
Rng(1, 3).Value = ComboBox1.Value
End Sub
Private Sub CommandButton2_Click()
Dim Rng As Range
Set Rng = Cells(Rows.Count, "A").End(xlUp)(1, 1)
Rng(1, 4).Value = Date
Rng(1, 5).Value = Time
End Sub