Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I am building my first QW document so bear with me if I am a bit slow! I am trying to build a report to measure my suppliers Delivery Performance. For this I am comparing the Confirmed Delivery Date with the actual Delivery date as follows:
(ConfirmedDate-GRdate) as GRdelta
GRdelta gives a difference in days. Just to make it simple I would like to start with only measuring late deliveries and have been trying to create a field DP using the following if-expression:
If
(GRdelta>0, 0, 100) as DPThis did not work however...
I want the field DP so that I can calculate the average Delivery Performance.
What is wrong with the expression? Can someone offer an alternative solution?
Thanks
Henrik
Try this expresion if this is defined in the script
for delivery lates
If((ConfirmedDate-GRdate)>0, 0, 100) as DP
for averange
avg(GRdelta)
i hope helps.
Try this expresion if this is defined in the script
for delivery lates
If((ConfirmedDate-GRdate)>0, 0, 100) as DP
for averange
avg(GRdelta)
i hope helps.
Thank you, that worked fine!
Thanks for the help