You need to sign in to do that
Don't have an account?
Manoj Goswami 5
How to convert total minutes into Days Hours and Minutes using formula editor
I have total minutes calculated (total_minutes__c),
How to convert these minutes in Days, Hours and Minutes.
I want something like this :
eg.
Input: total_minutes__c = 12495
Output = 8 Days 16 Hours 15 Minutes
Thanks in advance.
How to convert these minutes in Days, Hours and Minutes.
I want something like this :
eg.
Input: total_minutes__c = 12495
Output = 8 Days 16 Hours 15 Minutes
Thanks in advance.
Please try this below formula:
TEXT(FLOOR( Total_minutes__c / 1440)) &'Days'& TEXT( FLOOR( MOD(Total_minutes__c,1440 ) / 60)) &'hr'&
TEXT(FLOOR(MOD( MOD(Total_minutes__c,1440),60)))&'min'
Thanks,
Jothi
Sweet Potato Tec.