Day/Time Data to Something Useful?

Clu

New Member
Joined
Apr 13, 2011
Messages
6
Good morning everyone,

This is my first post here, and I'm hoping that someone here will understand this better than I do. :)

I am trying to use a number value in the following format: 000:00:43:48. This format is obviously ddd:hh:mm:ss. This format is very interesting as excel is allowing me to use it for virtually nothing.

For example, I am trying to multiply the number of minutes in the value by a sum of three other numbers.

So it would be =000:00:43:48*SUM(50+11+112).

This is turning up an #VALUE! when I run it in Excel.

Any ideas?

Clu
 
Ok... One of the guys in my office has figured this out. What we did was a

"=VALUE(LEFT(H2,3))" and "=TIMEVALUE(RIGHT(H2,8))" and then SUM the two together.

This yielded a workable number. Sorry for the confusion. I will have to work on articulating my descriptions. :)

Thanks folks!
Clu
 
Upvote 0

Excel Facts

Copy a format multiple times
Select a formatted range. Double-click the Format Painter (left side of Home tab). You can paste formatting multiple times. Esc to stop
Right, so it's not a number then.

Assuming that cell is A1 and your subscriber count is in B1, try this in C1:

=RIGHT(A9,2)/60+MID(A9,8,2)+MID(A9,5,2)*60+LEFT(A9,3)*60*24

which will give you the duration of the outage in decimal minutes. (I'm assuming the format of A1 will always be ddd:hh:mm:ss)

Then you can multiply B1 by C1 to get the total subscriber outage duration in decimal minutes.
 
Upvote 0

Forum statistics

Threads
1,224,532
Messages
6,179,388
Members
452,908
Latest member
MTDelphis

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