Subtracting time in excel to show in minutes:seconds

G

Gabe

Hi,

I'm using the following code for a timer(stopwatch)in excel, but the
final time i want to show in mintues and seconds. Is there a way do
this? Does anyone have something like this already they can share with
me? What I want is to have a spreadsheet to show the time it took to
perform a task, but I'm trying to put a stopwatch(timer) on so its all
on one sheet.

Please help!

Thanks,
Gabe

Here's what I have for a timer(stopwatch):

Option Explicit

Private startTime As Single

Private Sub StartButton_Click()
startTime = Timer
End Sub

Private Sub StopButton_Click()
Dim finalTime As Single
finalTime = Timer - startTime
ActiveCell = Format(finalTime, "0:00")
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top