All,
I'm trying to convert the decimal value of time to the military time hh:ss inside a cell without the Format window. The VBA property [numberformat] doesn't seem to work, and I guess Excel 2010 took out the "Format" function? i.e.:
H14 = 13:30 (as text format, from some other cell code)
H16 = TIMEVALUE(H14) which equals 0.5625
Now, I'd like to turn H16 into an actual number. Basically, I'm trying to turn a cell of "13:30 Z" and just extract the numbers, which I did fine, but then turn the text 13:30 into actual time number 13:30.
I'm trying to convert the decimal value of time to the military time hh:ss inside a cell without the Format window. The VBA property [numberformat] doesn't seem to work, and I guess Excel 2010 took out the "Format" function? i.e.:
H14 = 13:30 (as text format, from some other cell code)
H16 = TIMEVALUE(H14) which equals 0.5625
Now, I'd like to turn H16 into an actual number. Basically, I'm trying to turn a cell of "13:30 Z" and just extract the numbers, which I did fine, but then turn the text 13:30 into actual time number 13:30.