Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
srinivasa1
Creator II
Creator II

number of days

Hi

How i can calculate day from time diffrence like( enddatetime -startdateand time) if its duration is 50 hrs then it will be 2 days .pls help

thanks

1 Solution

Accepted Solutions
Gysbert_Wassenaar

try: interval(enddatetime -startdatetime,'D')

if you want to see the difference in days and hours+minutes use 'D - h:mm'


talk is cheap, supply exceeds demand

View solution in original post

4 Replies
krishnacbe
Partner - Specialist III
Partner - Specialist III

Hi

Hope below expression help to solve your issue.

 

=Timestamp( enddatetime -startdateand time , 'hh')

Regards

Krishna.

krishnacbe
Partner - Specialist III
Partner - Specialist III

Hi

To display the difference in Day. Use below expression.

  

=Timestamp( enddatetime -startdateand time , 'd')

Regards

Krishna

Gysbert_Wassenaar

try: interval(enddatetime -startdatetime,'D')

if you want to see the difference in days and hours+minutes use 'D - h:mm'


talk is cheap, supply exceeds demand
srinivasa1
Creator II
Creator II
Author

Thanks.