Convert HH:MM to minutes

I am creating a task management app. I have set deadlines in minutes for each task.

As soon as my user starts the task, the timer should start and show me how many minutes are left. I’m using a formula that is showing me for example 90 minutes as 1:30.

So how do I convert this 1:30 to 90 minutes left?

Update:

Got the formula :slight_smile:

(round((end-start)*24,2)) * 60

1 Like

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