How do I add a duration time value and a clock time value?

S

sueb262

I have a column containing cells formatted with the "1:30 PM" option (clock
time), and a column containing cells formatted with the "37:30:55" option
(duration time). I know I can jump through several hoops to extract and add
the various segments to get a new clock time, but I can't believe it's that
difficult. This MUST be a relatively common need, and surely I'm making it
more convoluted than it is, but I can't find the elegant way.
 
V

VBA Noob

Hi,

If A1 = "1:30 PM" and B1 = "37:30:55" then sum both in C1

Change the format of C1 in custom to

[h]:mm:ss

VBA Noob
 
Top