Hi All,
I’m putting together as seconds to minute’s converter and tried about 7 different variations that I’ve found (none of which seam to work for me).
So far I have a inputbox asking the use to enter the totals number of seconds on Enter a Msgbox to show the result in minutes.
Private Sub btnminutes_Click()
convertor = InputBox("Please enter the AHT in seconds...")
If convertor <> "" Then
Answer = convertor / 60
MsgBox "Total Minutes: " & Answer
End If
End Sub
I need my Answer shown in the Msgbox as 00:01:05 not 1.0833333
Any suggestions please.
Thanks
I’m putting together as seconds to minute’s converter and tried about 7 different variations that I’ve found (none of which seam to work for me).
So far I have a inputbox asking the use to enter the totals number of seconds on Enter a Msgbox to show the result in minutes.
Private Sub btnminutes_Click()
convertor = InputBox("Please enter the AHT in seconds...")
If convertor <> "" Then
Answer = convertor / 60
MsgBox "Total Minutes: " & Answer
End If
End Sub
I need my Answer shown in the Msgbox as 00:01:05 not 1.0833333
Any suggestions please.
Thanks