I have a current formula I'm using thats converting hours worked into decimals - ie; 53 hours 49 minutes > 53.81667 How do I add to the formula so its only showing 53.81
=VALUE(MID(A1,1,FIND(":",A1,1)-1))+VALUE(MID(A1,FIND(":",A1,1)+1,LEN(A1)))/60
Solved by G. A. in 26 mins