Home > Net >  Calculate Process Time Excel
Calculate Process Time Excel

Time:10-04

I am looking for some assistance in calculating the time taken between 2 dates. I have in column "A" item name and each item can have up to 5 completion stages called item status in column "B". Each completion stages has a time/date stamp in column "C".

Question: How do I calculate the time between each stage?

I have tried with =Networkdays but I'm not sure how to add the criterias to the formula? Criterias: Same item name and the calculation need to be in the right seqence (time between Step 1 and 2, time between step 2 and step 3 etc.)

This is the formula I've tried to use but I am not sure how to add the criterias

=NETWORKDAYS(C2;C3)

Desired outcome

CodePudding user response:

Use when sorted:

=IF(A2=A3,NETWORKDAYS(C2,C3),"-")

If not sorted.

=IF(MINIFS(C:C,A:A,A2,C:C,">"&C2)>0,NETWORKDAYS(C2,MINIFS(C:C,A:A,A2,C:C,">"&C2)),"-")
  • Related