do you just want to display this as a time or actually use this as a time value??
To display this value in the format you want, I would ask you what you expect the value for 09:09 to look like??
would it be 90900 with 00 being the seconds??
In other words, I am not being garuanteed a 6 digit number, am I?
so to convert the number to a time display (not used for anything else) then the following formula should work
@DisplayTime
WhilePrintingRecords;
stringVar tempTime := totext({table.timeNum},0)
if length(tempTime) = 5 then
tempTime[1] + ":" + tempTime [2 to 3]
else
tempTime[1 to 2] + ":" + tempTime [3 to 4];
that should do it.
JimBroadbent@Hotmail.com