Date and Time - Just need time please

chrisbn7

New Member
Joined
Feb 22, 2008
Messages
5
Hi all,

I have cell A1 displaying 1450:34:00 formatted with the custom format [h]:mm:ss

When I click on A1, the formula bar tells me that the cell entry is

29/02/1900 10:34:00

The value of 1450:34:00 is actually the total number of minutes:seconds:and presumably milliseconds people are logged into a telephone system. I don't need the 00 after the second : and just need the 1450:33 bit i.e. 1450mins 33secs. I then wanted to convert this to hh:mm:ss format, so in this instance it'd be 24h10m34s

In cell A2 I have the total number of calls taken during that time period, 122

I want to be able to do the calculation in A3 that will give me the result of 122/24:10:34 and find out what the average number of calls is per minute or per hour. The answer I can work out on a calculator as 5 and a bit.

However my sheet has about 500 rows per day in it, and I need to do this in calculation for each row.

Can anyone help at all please?

Thanks,
Chris
 

Excel Facts

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.
Welcome to the board...

To extract only the time from a cell containing date and time...

Try
=MOD(A1,1)

Hope that helps.
 
Upvote 0
Hello Chris,

Excel is actually seeing 1450:34:00 as 1450 hours and 34 minutes. To get that to minutes you'd divide by 60.

In A3 you can use this formula to get calls per hour (the formula includes the conversion of A1 to minutes rather than hours)

=A2/(A1/60*24)

format A3 as general
 
Upvote 0

Forum statistics

Threads
1,224,522
Messages
6,179,292
Members
452,902
Latest member
Knuddeluff

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
Back
Top