Need to add a zero before hour <9
Hi ,
We are using the below code for converting total duration in seconds to minute:second format:
<?xdofx:floor(NET_QUANTITY DIV 60) || ':'?><?xdofx:mod(NET_QUANTITY,60)?>
Using this we are getting output like 2:50/8:30/10:56.
The requirement is there has to be a leading zero for hours <9 which is missing in the above output.
Please suggest how can this be achieved.