Showing MM:HH as HH:MM:SS when something is over 1 minute

garypea123

Board Regular
Joined
Mar 16, 2020
Messages
221
Office Version
  1. 365
Platform
  1. Windows
Hi,

I am not sure if someone can help me, I have received exported data (which I need to try and use)

Here is the thing:

The Data seems to have converted the what should show MM:SS into HH:SS:MM

As an example:

G19 result is 02:45:00
G21 Result is :03

Now whilst G21 seems to be correct, I cam trying to figure out a way to correct G19... I think its just the way the exported data has been sent (which I cannot do anything about)

I did try to but in formula to divide G19 by 60. (then format the cell to mm:ss) - See P19 as answer.

However, this then creates an error in P21 as you cannot divide 3 seconds by 60.

I am not sure if this is understandable :)
Data Incorrect.JPG
 

Excel Facts

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.
However, this then creates an error in P21 as you cannot divide 3 seconds by 60.
You can, but your time is not in a valid format which is the reason behind the error. See if this does as needed.
Excel Formula:
=IF(ISNUMBER(G19),G19,TIMEVALUE(0&G19))
 
Upvote 0
Solution

Forum statistics

Threads
1,214,919
Messages
6,122,260
Members
449,075
Latest member
staticfluids

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