Date Subtraction in Hours and Minutes

0
Hello,   I need to find the difference between 2 dates. But I have to write it in hours and minutes. I have read this document: https://docs.mendix.com/refguide/between-date-function-calls/ . However, I couldn't find my answer.   For example, when I enter the values like: End date: 01/09/2023 08:38 Start date: 02/09/2023 09:52   Then, I need to get something like: Total Working Hours: 25 hours 14 minutes
asked
1 answers
0

Is this approach helpful?
 

'Total Working Hours: ’ + hoursBetween($EndDate, $StartDate) + ' hours ’ + minutesBetween($EndDate, $StartDate) + ' minutes’


Or do you mean, you only want hours within a working day range?

answered