Time Format

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi

Can anyone tell me how to change the time format of hh:mm:ss to an integer
number.

Thanks
Alec
 
What integer number would you like?

If you want hhmmss, format it as that, or use =TEXT(A1,"hhmmss") if you want
text formatted that way.
If you want a number of seconds, use =A1*24*60*60 (or =A1*86400), and format
the cell as number or general.
 
Thanks David, that works a treat



David Biddulph said:
What integer number would you like?

If you want hhmmss, format it as that, or use =TEXT(A1,"hhmmss") if you want
text formatted that way.
If you want a number of seconds, use =A1*24*60*60 (or =A1*86400), and format
the cell as number or general.
 
Back
Top