tkaplanusmc
Technical User
I am trying to select jobs exceeding specific preassigned dates for a Lead Time report. in the examples below im trying to show jobs in the planning workcenter that exceed 27 days, and then for purchasing im trying to reflect 24 days late from promised date. thank you in advance for the help.
*Note that the report is already grouped my workcenters and i have eliminated the drill down for each group to just show a total number of jobs in each work center for one field, and then this function im trying to create to show out of those jobs which ones are considered late.
@late
if {Job_Operation.Work_Center} = "Planning"
and {Delivery.Promised_Date} >= today -27 then count({Job_Operation.Job}, {Job_Operation.Work_Center})
else if {Job_Operation.Work_Center} = "Purchasing"
and {Delivery.Promised_Date} >= today -24 then count({Job_Operation.Job},{Job_Operation.Work_Center})
-Tyler
*Note that the report is already grouped my workcenters and i have eliminated the drill down for each group to just show a total number of jobs in each work center for one field, and then this function im trying to create to show out of those jobs which ones are considered late.
@late
if {Job_Operation.Work_Center} = "Planning"
and {Delivery.Promised_Date} >= today -27 then count({Job_Operation.Job}, {Job_Operation.Work_Center})
else if {Job_Operation.Work_Center} = "Purchasing"
and {Delivery.Promised_Date} >= today -24 then count({Job_Operation.Job},{Job_Operation.Work_Center})
-Tyler