Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
I have a page with some page level filters
I have a measure
Solved! Go to Solution.
i can be very wrong, but i believe that this
Measure = CALCULATE(AVERAGE(CustomerData[Score]), FILTER(ALL(CustomerData), CustomerData[ProductLine] = "xxx"), FILTER(ALL(CustomerData), CustomerData[Tenure] > 123))
actually doesnt do what you expect it to do, the second filter is actually overwriting the first one,
you should try this:
Measure = CALCULATE( AVERAGE(CustomerData[Score]), FILTER(ALL(CustomerData), CustomerData[ProductLine] = "xxx" && CustomerData[Tenure] > 123) )
also, the ALL filter will ignore all filter outside the CALCULTE context, so is highly improbable that what is bugging your calculation is the page level filter; try fixing the measure as above and if you can help us with some context, example, demo, anything more material.
😉
i can be very wrong, but i believe that this
Measure = CALCULATE(AVERAGE(CustomerData[Score]), FILTER(ALL(CustomerData), CustomerData[ProductLine] = "xxx"), FILTER(ALL(CustomerData), CustomerData[Tenure] > 123))
actually doesnt do what you expect it to do, the second filter is actually overwriting the first one,
you should try this:
Measure = CALCULATE( AVERAGE(CustomerData[Score]), FILTER(ALL(CustomerData), CustomerData[ProductLine] = "xxx" && CustomerData[Tenure] > 123) )
also, the ALL filter will ignore all filter outside the CALCULTE context, so is highly improbable that what is bugging your calculation is the page level filter; try fixing the measure as above and if you can help us with some context, example, demo, anything more material.
😉
It worked Thank You!
Hi @Anonymous,
According to my test, it seems impossible since you have clear all the filters on [CustomerData]. Can you share a dummy sample? Please upgrade the Desktop to the latest version. Please refer to my test.
Best Regards,
Dale
yeah sure, can you paste your measure!
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
144 | |
85 | |
65 | |
50 | |
45 |
User | Count |
---|---|
217 | |
88 | |
81 | |
65 | |
56 |