Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hi,
I am trying to get all measures shown based on selection, I had trouble to show what I needed as the slicer or filter exclude all other records that I need.
What I want to do:
If a select shop B, I want to show, profit of the selected shop, compare to average in its region and compare to average in its state.
Desired result:
Shop B: $150
average of region 1 in CA = (100+150+230)/3 = $160
average of CA $205
Any help is much appreciated.
Solved! Go to Solution.
Hi @Anonymous ,
We can use two measures to meet your requirement. One calculates the average of region, another calculates the average of state.
average of region =
CALCULATE (
AVERAGE ( 'Table'[Profit] ),
ALLSELECTED ( 'Table' ), ALL ( 'Table'[Shop] ) ,
'Table'[Region] IN DISTINCT ( 'Table'[Region] ),
'Table'[State] IN DISTINCT ( 'Table'[State] )
)
average of State =
CALCULATE (
AVERAGE ( 'Table'[Profit] ),
ALLSELECTED ( 'Table' ), ALL ( 'Table'[Shop] ) ,
'Table'[State] IN DISTINCT ( 'Table'[State] )
)
The result like this,
BTW, pbix as attached.
Best regards,
Community Support Team _ zhenbw
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous ,
We can use two measures to meet your requirement. One calculates the average of region, another calculates the average of state.
average of region =
CALCULATE (
AVERAGE ( 'Table'[Profit] ),
ALLSELECTED ( 'Table' ), ALL ( 'Table'[Shop] ) ,
'Table'[Region] IN DISTINCT ( 'Table'[Region] ),
'Table'[State] IN DISTINCT ( 'Table'[State] )
)
average of State =
CALCULATE (
AVERAGE ( 'Table'[Profit] ),
ALLSELECTED ( 'Table' ), ALL ( 'Table'[Shop] ) ,
'Table'[State] IN DISTINCT ( 'Table'[State] )
)
The result like this,
BTW, pbix as attached.
Best regards,
Community Support Team _ zhenbw
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 53 | |
| 52 | |
| 39 | |
| 15 | |
| 14 |
| User | Count |
|---|---|
| 95 | |
| 78 | |
| 34 | |
| 28 | |
| 25 |