CALCULAR TEMPO ENTRE LOTES DE PRODUÇÃO (Calculating Time Between Production Batches)





Este problema foi apresentado por um leitor e seguidor (Obrigado Maxwell).
Trata-se de calcular o atraso entre lotes de produção, tendo em consideração um valor tempo definido entre lotes, e realçando os valores tempo entre lotes superiores ao valor pré-definido (neste exemplo - 02:35)

  1. A fórmula em C6: =B6+$E$3
  2. A fórmula em E6: =SE(D6>C6;RESTO(D6-C6;1);RESTO(C6-D6;1))

This problem was presented by a reader and follower (Thanks Maxwell)
This is to calculate the delay between production batches , considering a set time value between lots, and highlighting the time values ​​between batches greater than the default value (in this example - 02:35)

  1. Formula in C6: =B6+$E$3
  2. Formula in E6: =IF(D6>C6,MOD(D6-C6,1),MOD(C6-D6,1))





Como sempre, estou disponível para sugestões de melhoria e para ajudar nas questões que eventualmente estejam omissas, através dos comentários no blog ou por mail blog.excelcoisas@gmail.com
Espero que seja útil.

As always, I am available to suggestions for improvement and to help answer questions that are possibly missing through comments on the blog or via email blog.excelcoisas@gmail.com.
Hope that is useful.


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)

CALCULAR HORAS ENTRE DUAS DATAS COM UMA CONDIÇÃO (Calculate Hours Between Two Dates with a Condition)