Hi I have the following:
I get an overflow error when something like this comes along:
ConvTime2("561:32")
Anyone has any suggestions. Thanks
Zishan
Code:
Public Function ConvTime2(sSecc As String) As Date
ConvTime2 = TimeSerial(0, 0, Eval(Replace(sSecc, ":", "*60+")))
End Function
ConvTime2("561:32")
Anyone has any suggestions. Thanks
Zishan