Hour manipulation

R

Redwings

i have a file download that shows hours worked for employees in th
following format 72:09:50(hh:mm:ss). The problem is this, the data i
displayed in that format but in the formula bar it shows the data a
1/3/1900 12:09:50 AM. Because of this, I can not manipulate the data
How can I, in essence, make the data a string or some state in whic
it is not recognized as a date and time. I have tried copying the dat
and pasting it as a value, one hundred different formatting tries, an
everything else I can think of. pls hl
 
D

DDM

Redwings, this will turn a time entered in Cell A1 into a string:
=TEXT(A1,"[h]:mm:ss")
 
D

David McRitchie

Correct formatting but that requires two columns,
one for the arithmetic amount and one for display,
when all that is needed is to format the
time with a number format.


DDM said:
Redwings, this will turn a time entered in Cell A1 into a string:
=TEXT(A1,"[h]:mm:ss")
=
 
Top