This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
I have Stores and corresponding Response Rate,i want to show all the Stores where Response Rate is greater than the average of Response Rate
i.e. average of Response rate=0.43 , then Store 2 and Store 3 should be display on the map.
I tried
| Store | Response Rate |
| 1 | 0.1 |
| 2 | 0.5 |
| 3 | 0.7 |
Solved! Go to Solution.
Hi @Anonymous ,
Try this:
Measure 2 =
VAR Avg_ =
CALCULATE (
DIVIDE ( SUM ( 'Table'[Response Rate] ), DISTINCTCOUNT ( 'Table'[Store] ) ),
ALLSELECTED ( 'Table' )
)
RETURN
IF ( SUM ( 'Table'[Response Rate] ) > Avg_, 1, 0 )
Best regards
Icey
If this post helps, then consider Accepting it as the solution to help other members find it faster.
Hi @Anonymous ,
Try this:
Measure 2 =
VAR Avg_ =
CALCULATE (
DIVIDE ( SUM ( 'Table'[Response Rate] ), DISTINCTCOUNT ( 'Table'[Store] ) ),
ALLSELECTED ( 'Table' )
)
RETURN
IF ( SUM ( 'Table'[Response Rate] ) > Avg_, 1, 0 )
Best regards
Icey
If this post helps, then consider Accepting it as the solution to help other members find it faster.
@camargos88 This solution works but i want the average as a contant.i.e. if i have 100 of stores then it will do average of 100 of stores,then it will show the stores which is greater than average of the Response Rate.
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 30 | |
| 23 | |
| 22 | |
| 16 | |
| 15 |
| User | Count |
|---|---|
| 61 | |
| 35 | |
| 28 | |
| 22 | |
| 21 |