Forum Discussion
PasiNiinikoski
6 years agoFrequent Visitor
Calculating average with values more than x
I have this very simplified data sheet: WorkerName Date ProductsMade John 2019/12/01 40 John 2019/12/01 50 John 2019/12/05 90 John 2019/12/05 70 John 2019/12/07 110 ...
az38
Community Champion
6 years agotry a measure
Measure = CALCULATE(AVERAGE(Query[ProductsMade]);ALLEXCEPT(Query;Query[WorkerName]);Query[ProductsMade]>100)
do not hesitate to give a kudo to useful posts and mark solutions as solution
PasiNiinikoski
6 years agoFrequent Visitor
Hi az38 and thanks,
will try that but I must first somehow calculate the sum of the ProductsMade by worker per day and then apply that measure.
-Pasi
- az386 years ago
Community Champion
ProductsMade = CALCULATE(SUM('Table'[Products]);ALLEXCEPT('Table';'Table'[WorkerName];'Table'[Date]))do not hesitate to give a kudo to useful posts and mark solutions as solution