converting numbers to time

  • Thread starter Thread starter FishandChips
  • Start date Start date
F

FishandChips

I have a list of numbers:

900
1030
830 etc.

I need these in the format:

09:00:00
10:30:00
08:30:00 etc

I have tried text to columns but without the 0 before 830 the fixed width
line doesnt fall right.

Very stuck on this so any help would be gratefully recieved (otherwise I
have alot of work on my hands!!)
 
Hi,

Assuming your numbers are in a1 down try this

=VALUE(LEFT(A1,LEN(A1)-2)&":"&RIGHT(A1,2))

Format as time
--
Mike

When competing hypotheses are otherwise equal, adopt the hypothesis that
introduces the fewest assumptions while still sufficiently answering the
question.
 
Back
Top