I have a web that user are storing mins they are doing a job for
I have this code that display hh:mm
Code:
Function MintoHrs(num)
If num<60 then
MintoHrs="00:" & DIG(num)
else
hh =int(num/60)
temp = (hh*60)
MintoHrs = DIG(hh) & ":" & DIG((num-temp))
end if
End Function
but now they want to see broken down to days if > 24 hours