Rounding up a time to minutes

jpowell79

Active Member
Joined
Apr 20, 2006
Messages
336
Office Version
  1. 2021
Platform
  1. Windows
Hi Guys,

I have a column of call duration values.

For example:

00:09:54
00:10:11
01:55:07
01:55:23
02:47:24
02:47:39
02:59:35
00:35:22
00:35:50

Is there a way we can roundup to the nearest minute, then represent this as a value, so based upon the example below, these values would now be shown as:

10
11
116
116
168
168
180
36
36



Thanks guys :)
 

Excel Facts

Formula for Yesterday
Name Manager, New Name. Yesterday =TODAY()-1. OK. Then, use =YESTERDAY in any cell. Tomorrow could be =TODAY()+1.

Evagrius Ponticus

Well-known Member
Joined
May 24, 2007
Messages
1,467
Well, this would work too, it has to be formated as number or general - though it's decidedly not as streamlined as the rest :)

=ROUND(HOUR(A1)*60+MINUTE(A1)+SECOND(A1)/60,0)
 
Upvote 0

jim may

Well-known Member
Joined
Jul 4, 2004
Messages
7,484
There may (easily) be a shorter way, but this worked for me (copy down)

=IF(HOUR(A1)>0,HOUR(A1)*60,0)+ROUNDUP(MINUTE(A1),0)+1
 
Upvote 0

Forum statistics

Threads
1,191,367
Messages
5,986,249
Members
440,013
Latest member
DBB1

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Top