Forum Discussion
Average per employee
- 2 years ago
Hi, T-Pan
You can try the following methods. distinct count resolved by (all activities) is a measure.
Measure = Var _N1=CALCULATE(SUM('Table'[Count Operations]),ALL('Table')) Var _table=SUMMARIZE('Table','Table'[Day],"Distinct",[distinct count resolved by (all activities )]) Var _N2=SUMX(_table,[Distinct]) RETURN DIVIDE(_N1,_N2)Is this the result you expect? Please see the attached document.
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
This is my table, resolved by column Represents the name of employess, count of operations represents an operations, resolution date is the timestamp where the operation completed.
The follow image is an table i have created to expalin what i want to measure
I want to divide the value '17660' by the sum of last column whic represents the distinct names of employess in each date and is the follow measure : (distinct count resolved by (all activities) = distinctcount('ALL ACTIVITIES'[resolved by].))