SOLVED

Adding Values Contained in Text cells

Copper Contributor

To calculate the total hours worked, I have cells for start time, stop time and hours worked.  My formula for hours worked is  =TEXT(Stop time - Start time)  E.g. 8pm - 2pm = 6 hours worked.

 

I then want to add the total hours worked; how do I add the value contained in cells that start "=TEXT...)? 

3 Replies
best response confirmed by Jess_A (Copper Contributor)
Solution

@Jess_A 

Better not to use TEXT and calculate time difference as =MOD(end-start,1)*24 applying General or Number format.

Perfect, thank you Sir.

@Jess_A , you are welcome

1 best response

Accepted Solutions
best response confirmed by Jess_A (Copper Contributor)
Solution

@Jess_A 

Better not to use TEXT and calculate time difference as =MOD(end-start,1)*24 applying General or Number format.

View solution in original post