Forum Discussion
Pricef1
3 years agoRegular Visitor
Time calculation to predict end time
Could not find a solution that was similar to what I need. I am not sure how to calculate the end time for a particular item. Basically we have a start time (ex. 08:15am) with a 7.5hr cycle, to be re...
- 3 years ago
I hope this works, I just divided Cycle Time by 24 (here 24 is hours in a day)
HamedM1125
3 years agoAdvocate III
Hi Pricef1 ,
You can do this in M query but before that you need to have Date and Time columns combined.
After combining it, create a custom column in M query as:
= [Date] + #duration(0,0,0,27000)
--here 27000 is in seconds (7.5 hours)
Result:
Thanks,
Hamed
Pricef1
3 years agoRegular Visitor
Or would i need to somehow convert cycle time in a seperate column and then refence that column?