Problema Resolvido - DETERMINAR A DURAÇÃO DE UMA TAREFA (Solved Problem - How to determine an activity duration)



Um leitor (Obrigado Denis) precisou de ajuda para determinar a data de conclusão da montagem de uma máquina, sabendo que:
A duração da montagem é de 30 horas de trabalho.
O turno regular é de 8:48 horas, das 8:00 às 17:48, incluindo o intervalo de 1:00 para almoço.
A data de início da montagem é 21/09/2014 10:00.
A distribuição das 30 horas seria efectuada da seguinte forma:

A blog reader (Thanks Denis) asked me for help in determining the date of completion of the assembly of a machine, knowing that:
The duration of the assembling is 30 working hours.
Regular shift is 8:48 hours, from 8:00 to 17:48, including the 1:00 for lunch.
The start date of the assembly is 21/09/2014 10:00.
The 30 hours distribution would be performed as follows:









Início Turno
30:00
Almoço
Fim Turno


21-09-2014 10:00
06:48
01:00
21-09-2014 17:48


22-09-2014 08:00
08:48
01:00
22-09-2014 17:48


23-09-2014 08:00
08:48
01:00
23-09-2014 17:48


24-09-2014 08:00
05:36

24-09-2014 13:36








A montagem da máquina terminaria no dia 24 de Setembro de 2014, às 13:36.
Método de cálculo:
Em primeiro lugar, vamos converter “8:48” (duração do turno) em valor decimal, aplicando uma rega de três – Se “8:00” é igual a 8, “8:48” será igual a “x”
Fórmula - =”8:48” / 8 x “8:00” – a que corresponde o resultado de 8,8
Construindo a fórmula:

Fórmula em C1 - =B1+(INT(A1*24/8,8)+RESTO(A1*24;8,8)/24)


The machine assembly end on September 24, 2014, at 13:36.
Method of calculation:
First, we convert "8:48" (shift duration) in decimal value by applying a simple rule of three - If "8:00" is equal to 8 then "8:48" is equal to "x"
Formula - = "8:48" / 8 x "8:00" - which corresponds to the result of 8.8
Building formula:

Formula em C1 - =B1+(INT(A1*24/8.8)+MOD(A1*24,8.8)/24)



A
B
C
1
30:00
21 set 2014 10:00
24 set 2014 13:36
2



3







Comentários

Mensagens populares deste blogue

EXCEL 2007 - FUNÇÕES PARA CALCULAR HORAS (Functions to Calculate Hours)

CONVERTER HORAS EM DIAS DE TRABALHO (Convert Hours to Workdays)

VBA EXCEL - OCULTAR LINHAS EM BRANCO (Hide Blank Rows)