My datasource brings back a row showing a monthly summary for each user for the last 12 months. I am trying to get an average of the Number of Days Worked for the current month. Here is my formula:
whileprintingrecords;
average({ds.daysworked}, {ds.WorkMonth}, Month (CurrentDate))
I know this is not the correct way to utilize the
average(fld, condfld, cond) function, but I am unable to find a solution to this problem. I have also tried running totals to solve this, however I need this average figure in the group footer (grouped by user).
whileprintingrecords;
average({ds.daysworked}, {ds.WorkMonth}, Month (CurrentDate))
I know this is not the correct way to utilize the
average(fld, condfld, cond) function, but I am unable to find a solution to this problem. I have also tried running totals to solve this, however I need this average figure in the group footer (grouped by user).