Forum Discussion

ToddLock's avatar
ToddLock
Copper Contributor
Aug 26, 2022
Solved

Converting Min to Decimal with a long string

I'm looking for an excel formula that will convert the Minutes to Decimal for aircraft time which usually has five or six digits in front of the Colon: for example, 12999:30, the calculation would be...
  • Riny_van_Eekelen's avatar
    Aug 26, 2022

    ToddLock 

    According to the Excel specs:

    So I guess you'll have to use a formula like:

     

     

    =LEFT(A1,FIND(":",A1)-1)+RIGHT(A1,2)/60

     

    Assuming that the minutes will always be the last two digits (thus 00 to 59).

     

Resources