Ayuda con Temporizador en excel
Publicado por René (1 intervención) el 10/03/2020 04:06:37
Hola, he intentado hacer este temporizador para que incie y vaya recolectando los laps pero me sale error 1004. Si pudieran ayudarme a identificar dónde se encuentra el error se los agradecería
1
2
3
4
5
6
7
8
Sub StarTimer()
nr = ThisWorkbook.Sheets("Hoja1").Cells(Rows.Count, 1).End(x1Up).Row + 1
Cells(nr, 1) = Time
End Sub
Sub ResetTimer()
lr = ThisWorkbook.Sheets("Hoja1").Cells(Rows.Count, 1).End(x1Up).Row
Range("a2:a" & lr).ClearContents
End Sub
Valora esta pregunta


0