-
1
- #1
I've searched the tek-tips archive for help with this question and found a similar question hoping to convert Minutes into Days Hours and Minutes, ie 4000 minutes = 2d, 18h, 40m
MalcomW gave a good response
ToText({{Minutes}}\(24*60),0) + 'd, ' +
ToText((({Minutes}\60) Mod 24),0) + 'h, ' +
ToText(({Minutes} Mod 60),0) + 'm'
This works in v8 - previous versions require different operators other than mod and integer division (\)
I'm running v7 and don't know how to modify this formula
Any help would be much appreciated
Andy
Andy Wing
Local Government - Systems Administrator
England
MalcomW gave a good response
ToText({{Minutes}}\(24*60),0) + 'd, ' +
ToText((({Minutes}\60) Mod 24),0) + 'h, ' +
ToText(({Minutes} Mod 60),0) + 'm'
This works in v8 - previous versions require different operators other than mod and integer division (\)
I'm running v7 and don't know how to modify this formula
Any help would be much appreciated
Andy
Andy Wing
Local Government - Systems Administrator
England