Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
zrazzaq said:Now in Access it will not do this for some reason...
Public Function ConvTime(sSecc As String)
Dim iPoss As Integer
'iPos = InStr(n, ":")
p = Len(sSecc)
q = 3
'Lets get seconds first
strn = Right$(sSecc, q)
'To get minutes
n = Left$(sSecc, p - q)
If n < 60 Then
n = sSecc
ConvTime = n
ConvTime = "00:" & n
Else
n = FormatNumber(Div0(n, 60), 2)
n = ReplaceCharacter(n, ".", ":")
ConvTime = n & strn
End If
End Function