Diferença da fórmula do Excel entre duas datas

1

Eu tenho duas datas como as seguintes, quero obter a duração entre elas.

 6/29/2015 12:18:04 PM 

Atenciosamente,

    
por Brandon R Roger 29.06.2015 / 11:32

2 respostas

1

Você pode usar a função DATEDIF para calcular a duração

Sintaxe :

=DATEDIF(Start_Date, End_Date, Unit) or e.g =DATEDIF(A1,A2,"m").

no lugar da unidade substitua o seguinte para obter os resultados

UNIT RETURNS

"Y" Retorna a diferença do período como anos completos.

“M” Returns the period difference as complete months.

“D” Returns the number of days in the period.

“MD” Returns the difference between the days in ‘Start_Date’ and ‘End_Date’. Here the months and years of the dates are ignored.

“YM” Returns the difference between the months in ‘Start_Date’ and

‘End_Date’. Here the days and years of the dates are ignored

“YD” Returns the difference between the days of ‘Start_Date’ and ‘End_Date’. Here the years of the dates are ignored.

Uso de amostra :

= DATEDIF (A1, A2, "m").

    
por 29.06.2015 / 12:12
1

Com dados em A1 e A2 como:

EmA3use:

=A2-A1

e para ver a diferença é um uso de formato mais "legível":

=INT(A2-A1) & " " & TEXT(A2-A1-INT(A2-A1),"hh:mm:ss")

A parte inteira do resultado é a diferença de dias inteiros.

    
por 29.06.2015 / 13:02