Hi
I am wondering if anyone have a formula to convert times ie:
1214 to 12:14:00
Would be really greatful if some could help as I really need this and Im completly goosed![]()
Hi
I am wondering if anyone have a formula to convert times ie:
1214 to 12:14:00
Would be really greatful if some could help as I really need this and Im completly goosed![]()
Is it always a 4-digit number to convert.
If so, then try =(LEFT(A1,2)&":"&RIGHT(A1,2))+0
Where A1 houses your 4-digit number.
You can then format the cell to 13:30:55 to show as you desire.
Where there is a will there are many ways.
If you are happy with the results, please add to the contributor's reputation by clicking the reputation icon (star icon) below left corner
Please also mark the thread as Solved once it is solved. Check the FAQ's to see how.
Try
=TEXT(A1,"00\:00")+0
format as time
Meteor239,
Try this using 3 0r 4 digits.
=IF(LEN(A1)=3,LEFT(A1,1)&":"&RIGHT(A1,2),LEFT(A1,2)&":"&RIGHT(A1,2))
Dean
My suggestion will work for any number of digits, e.g.
1 > 00:01
11 > 00:11
111 > 01:11
1111 > 11:11
daddy,
I know. Yours is really nice. I've stored it in my little goody file.
Thanks,
Dean
Thank you.![]()
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks