I have a formula cycle time which calculates the number of days between order placement and order closing. I am now trying to calculate of the quickest 80% what is the average number of days.
1 sort the number of days formula ascending
2 count number of records
3 work out 80% of them
4 then average the 80%
TopN doesn't work for this.
I have tried using a formula in section expert to suppress records after 80% of the total number
recordnumber > count ({@cycle days) then average ({@cycle}}, {@Country))which is fine but means that i have to run for each country individually as recordnumber does not reset on change of group {@country}.
What is the content of your formula for cycle days? You can use a running total instead of recordnumber. Set it up to count the field you are grouping on, evaluate for each record, reset on change of group.
Use variables to accomplish this. Create these formulas:
//{@reset} to be placed in the country group header:
whileprintingrecords;
numbervar cnt;
numbervar sumdaydiff;
if not inrepeatedgroupheader then (
cnt := 0;
sumdaydiff := 0
);
//{@accum} to be placed in the detail section:
whileprintingrecords;
numbervar cnt;
numbervar sumdaydiff;
if cnt <= .8 * count({table.country},{table.country}) then (
cnt := cnt + 1;
sumdaydiff := sumdaydiff + {@yourdatediff}
);
//{@displave} to be placed in the country group footer:
whileprintingrecords;
numbervar cnt;
numbervar sumdaydiff;
if cnt > 0 then
sumdaydiff/cnt
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.