Time Format: Minutes showing up as Hours

wfmguy

New Member
Joined
Oct 8, 2017
Messages
7
Type: Excel Question
Sub Type: Time Format Issue
Description: I am extracting data from this tool, and I am getting this error, where Minutes are Showing up as Hours.

They are not being converted. They are literally being moved to hours.

Example:

Value - 0:10:00 = 10 Minutes
It is showing as :
10:00:00 = 10 hours

Example 2:

Value - 00:07:00 = 7 minutes
It is showing as :
07:00:00 = 7 Hours

There are 4000+ such entries.
is there a way I can fix this?

thanks a lot in advance.
 

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
Re: Excel Question: Time Format: Minutes showing up as Hours

Welcome to the MrExcel board!

Would this work for you?
Put the formula shown in an adjacent column & copy down.
Copy the column of formulas & PasteSpecial -> Values
Format the column with the time format you want.


Book1
AB
110:00:000:10:00
2
37:00:000:07:00
Sheet2 (5)
Cell Formulas
RangeFormula
B1=IF(A1="","",A1/60)
 
Upvote 0
Re: Excel Question: Time Format: Minutes showing up as Hours

0:10:0000:10:00
I merely multiplied A1 by 1
I entered A1 as text to force the single leading zero

<colgroup><col><col span="7"></colgroup><tbody>
</tbody>
 
Upvote 0
Re: Excel Question: Time Format: Minutes showing up as Hours

Welcome to the MrExcel board!

Would this work for you?
Put the formula shown in an adjacent column & copy down.
Copy the column of formulas & PasteSpecial -> Values
Format the column with the time format you want.

AB
110:00:000:10:00
2
37:00:000:07:00

<colgroup><col style="width: 25pxpx"><col><col></colgroup><thead>
</thead><tbody>
</tbody>
Sheet2 (5)

Worksheet Formulas
CellFormula
B1=IF(A1="","",A1/60)

<thead>
</thead><tbody>
</tbody>

<tbody>
</tbody>

Thank you for this.
It worked!

Can you please also explain what was happening and what you did to fix it?
 
Upvote 0
Re: Excel Question: Time Format: Minutes showing up as Hours

Thank you for this.
It worked!

Can you please also explain what was happening and what you did to fix it?
Good news, thanks for letting us know.

I'm not sure why it happened in the first place, but presumably something to do with how the data was coming from the other software tool. However, since you had hours and wanted minutes and there are 60 minutes in an hour, I just divided by 60 to convert. :)
 
Upvote 0

Forum statistics

Threads
1,213,527
Messages
6,114,148
Members
448,552
Latest member
WORKINGWITHNOLEADER

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