I am using the following query to get hours and minutes elapsed:
TimeOnBench \ 60 & ":" & TimeOnBench Mod 60
If a job has been going for 62 minutes it produces the result:
1:2
How can I add to the query to make anything under 10 hours or 10 minutes appear as 0x:0x, i/e 62 minutes produces 01:02?
Thanks
TimeOnBench \ 60 & ":" & TimeOnBench Mod 60
If a job has been going for 62 minutes it produces the result:
1:2
How can I add to the query to make anything under 10 hours or 10 minutes appear as 0x:0x, i/e 62 minutes produces 01:02?
Thanks