Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
PasiNiinikoski
Frequent Visitor

Calculating average with values more than x

I have this very simplified data sheet:

 

WorkerNameDateProductsMade
John2019/12/0140
John2019/12/0150
John2019/12/0590
John2019/12/0570
John2019/12/07110
John2019/12/15150
John2019/12/1870
John2019/12/21115

 

My workers work several shifts per day. And John is not my only worker 🙂

Lets say I would like to know how many products my workers make on the average per day. That is easy.

But lets say I would like know that information but concerning only those days that they make more than 100 products: average per day per worker.

 

Any help? In my query or in Power BI?

 

Thanks in advance,

 

Pasi Niinikoski

3 REPLIES 3
az38
Community Champion
Community Champion

Hi @PasiNiinikoski 

try 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


do not hesitate to give a kudo to useful posts and mark solutions as solution
LinkedIn

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

@PasiNiinikoski 

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


do not hesitate to give a kudo to useful posts and mark solutions as solution
LinkedIn

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors