Jasper,
I ran into this also and here's what I used:
NumberVar MinNum:= If Len(ToText({LaborHed.LunchOutTime})) = 4 Then
ToNumber (Mid(ToText
({LaborHed.LunchOutTime}),2,3)) Else
ToNumber (Mid(ToText
({LaborHed.LunchOutTime}),3,3));
StringVar Hr:= If Len(ToText({LaborHed.LunchOutTime})) = 4 Then
"0" + Mid(ToText({LaborHed.LunchOutTime}),1,1) Else
Mid(ToText({LaborHed.LunchOutTime}),1,2);
StringVar Min:= If MinNum = .00 Then "00" Else Mid(Totext(MinNum *
60),1,2);
If {LaborHed.LunchOutTime} = 0.00 Then "00:00"
Else
Hr + ":" + Min
I hope this helps.
Aceplayr
I ran into this also and here's what I used:
NumberVar MinNum:= If Len(ToText({LaborHed.LunchOutTime})) = 4 Then
ToNumber (Mid(ToText
({LaborHed.LunchOutTime}),2,3)) Else
ToNumber (Mid(ToText
({LaborHed.LunchOutTime}),3,3));
StringVar Hr:= If Len(ToText({LaborHed.LunchOutTime})) = 4 Then
"0" + Mid(ToText({LaborHed.LunchOutTime}),1,1) Else
Mid(ToText({LaborHed.LunchOutTime}),1,2);
StringVar Min:= If MinNum = .00 Then "00" Else Mid(Totext(MinNum *
60),1,2);
If {LaborHed.LunchOutTime} = 0.00 Then "00:00"
Else
Hr + ":" + Min
I hope this helps.
Aceplayr
--- In vantage@yahoogroups.com, "Jasper Recto" <jrecto@...> wrote:
>
> Does anybody know how I can convert the Actual Clock In time that
is in hundredths to an actual readable time?
>
>
>
> Thanks,
> Jasper
>
>
>
> [Non-text portions of this message have been removed]
>