I want to calculate the difference in time between two date and time columns

Help please? I am trying to get Minutes until next break to populate by calculating the difference between the current time and the time of the next break. I a have used tools I can see but they don’t seem to work? Any help with this would be appreciated I am an absolute beginner - CoPilot has been helpful to a degree but keeps referring me to methods of old versions of glide. Once I have this sorted the rest of my app should be sorted.

Use a math column: (End - Start) * 1440

3 Likes

To clarify @Darren_Murphy answer.
(End - Start) is time difference in DAYS.
(End - Start) * 24 is time difference in HOURS.
(End - Start) * 24 * 60 is time difference in MINUTES.
(End - Start) * 24 * 60 * 60 is time difference in SECONDS.

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.