I have been attempting to convert numbers such as '080952' to 08:09:52 am. I have tried time conversion by formatting cells, and when I do I receive 0 or 12:00am.
I have used the following formula:
=TIME(VALUE(LEFT(B2,2)),VALUE(MID(B2,3,2)),VALUE(RIGHT(B2,2)))
and it works well for the most...