Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi, this should seem easy, but it isn't. I have two time stamps (start_time, end_time) and I want to calculate the amount of minutes between both. How do I do it? Thanks
Since timestamps are stored as days, to get minutes just multiply by the minutes in a day:
(end_time - start_time) * 60 * 24
Hi,
see the attached example.
Good luck !
Rainer