Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Calculating Completed Parts through Multiple Processes

I think I have what seems to be a fairly tough problem. I'm having trouble calculate the number of parts that go through multiple machines/processes. Below is the data I receive to put into QlikView (headers with the red text). Each record has a quantity associated with it but I cannot just simply take a sum of the Quantity field to get what was produced because it will be overstated. I tried using set analysis and the AGGR expression but the issue comes from parts that cross over into different months (like part 2222 below). In my tables below, part 2222 should have a total Routing_Time of 1.25 in May and 1.00 in June with 0 completed parts in May and 4 completed parts in June.

I think the solution is to create a field in the script that only has the Completed Quantity for the records that are the final step in the process (see Desired_Result field in the second table). Unfortunately, the only way to identify that a part is truly completed is if it stops showing up in the data.

I had a somewhat similar issue a month ago where a QlikCommunity user helped me using RecNo() and Previous() but I still can't figure this out.

Any help would be appreciated!!

JOBPARTPROCESSDATEQUANTITYROUTING_TIMEActual_Result
ABC1111Machine_105/15/201410                 0.50 10
ABC1111Machine_205/16/201410                 0.75 10
ABC2222Machine_105/31/20144                 0.50 4
ABC2222Machine_205/31/20144                 0.75 4
ABC2222Machine_306/01/20144                 1.00 4
DEF1111Machine_405/31/20146                 0.50 6
DEF1111Machine_506/01/20145                 0.25 5

JOBPARTPROCESSDATEQUANTITYROUTING_TIMEDesired_Result
ABC1111Machine_105/31/201410                 0.50 0
ABC1111Machine_205/31/201410                 0.75 10
ABC2222Machine_105/31/20144                 0.50 0
ABC2222Machine_205/31/20144                 0.75 0
ABC2222Machine_306/01/20144                 1.00 4
DEF1111Machine_405/31/20146                 0.50 0
DEF1111Machine_506/01/20145                 0.25 5
0 Replies