I need to convert 1 hour 38 min to decimals
If you have the string "1 hour 38 min" in cell A1 and want to have the
decimal value 1+38/60 in some other cell, try this formula:
=1+38/60
If you want the formula to work also for other strings with a similar
format, i.e. first a number then the word " hour", then a second
number, then the word " min", then you can try this formula:
=LEFT(A1,FIND(" ",A1)-1)+MID(A1,FIND("hour",A1)+4,
FIND("min",A1)-FIND("hour",A1)-4)/60
Hope this helps / Lars-Åke