Hello,
I'm trying to create a TAT based on date difference and i wanted to display in mins, hrs and days...
Here's the formula i used
Mins:
div(sub(ticks(body('AUTOMATION_COMPLETION_DATE')),ticks(body('LAST_APPROVAL_DATE'))),600000000)
Hrs:
div(sub(ticks(body('AUTOMATION_COMPLETION_DATE')), ticks(body('LAST_APPROVAL_DATE'))), 36000000000)
Days:
div(sub(ticks(body('AUTOMATION_COMPLETION_DATE')), ticks(body('LAST_APPROVAL_DATE'))), 864000000000)

and Here's the output data. How can I achieve to get the correct mins, hrs and days, say in below example, the result should be
from 0 days, 1 hrs, 78 mins to 0 days, 1 hrs, 18 mins and from 0 days, 1 hrs, 81 mins to 0 days, 1 hrs, 21 mins.
