Excel: trasformare ore e centesimi in ore e minuti e viceversa

Visto che spesso mi capita di dover fare questi calcoli con Exel, uso questa pagina come blocco degli appunti per ricordare velocemente le formule che, in Microsoft Excel, trasformano le ore centesimali in ore e minuti.
Per passare da ore minuti a ore centesimi:

=INT(A1) + (A1 - INT(A1))/60 * 100

Per passare da ore centesimi a ore minuti:

=INT(A1) + ((A1 - INT(A1))/100) * 60

2 commenti

  1. excel training glasgow:

    is there a resource where I could translate this page please?

  2. Franco Lombardo:

    The translation is trivial.
    Suppose we have in the cell A1 a duration expressed in hours and hundredths of hours. The formula to translate it in hours and minuts is:

    =INT(A1) + (A1 - INT(A1))/60 * 100

    The inverse formula, that translates hours and hundredths of hours in hours and minuts is

    =INT(B1)+(B1-INT(B1))*60/100

Lascia un commento