AKMonkeyboy
IS-IT--Management
I'm trying to convert various decimal values to times and feel my code has gotten out of hand - not to mention it does funny things at certain values.
For example, I'd like:
.1 to read 0:06 (.1 = 6 minutes)
.13 to read 0:07
.20 to read 0:12
etc.
I'm betting there's some nice code that will handle this, but I haven't been able to locate any - so I have built my own, but it does strange things with .20 and other values.
Hope someone has had experience with this previously and can direct me in the right spot.
Here's what I have so far (sorry it's so sloppy!)
Give a man a fish, and you feed him for a day.
Teach a man to fish, and you feed
him for life.
Send a man to Tek-Tips and the poor sap can find out how to fish on his own, and learn more by doing it.
For example, I'd like:
.1 to read 0:06 (.1 = 6 minutes)
.13 to read 0:07
.20 to read 0:12
etc.
I'm betting there's some nice code that will handle this, but I haven't been able to locate any - so I have built my own, but it does strange things with .20 and other values.
Hope someone has had experience with this previously and can direct me in the right spot.
Here's what I have so far (sorry it's so sloppy!)
Code:
Dim intAfterDec As Double
Dim intBeforeDec As Integer
If IsNull(intTime) Then
InttoTime = "0:00"
Else
intBeforeDec = Left(intTime, (InStr(intTime, ".") - 1))
If intTime = 0.2 Then
intAfterDec = 0.1 * Right(intTime, (Len(intTime) - InStr(intTime, ".")))
If Len(intBeforeDec & ":" & Int(intAfterDec * 60)) = 3 Then
InttoTime = intBeforeDec & ":" & Int(intAfterDec * 60) & 0
Else
InttoTime = intBeforeDec & ":" & Int(intAfterDec * 60)
End If
ElseIf intTime < 0.2 Then
intAfterDec = 0.01 * Right(intTime, (Len(intTime) - InStr(intTime, ".")))
If Len(intBeforeDec & ":" & Int(intAfterDec * 60)) = 3 Then
InttoTime = intBeforeDec & ":" & 0 & Int(intAfterDec * 60)
Else
InttoTime = intBeforeDec & ":" & 0 & Int(intAfterDec * 60)
End If
Else
intAfterDec = 0.01 * Right(intTime, (Len(intTime) - InStr(intTime, ".")))
If Len(intBeforeDec & ":" & Int(intAfterDec * 60)) = 3 Then
InttoTime = intBeforeDec & ":" & Int(intAfterDec * 60) & 0
Else
InttoTime = intBeforeDec & ":" & Int(intAfterDec * 60)
End If
End If
End If
Give a man a fish, and you feed him for a day.
Teach a man to fish, and you feed
him for life.
Send a man to Tek-Tips and the poor sap can find out how to fish on his own, and learn more by doing it.