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 @singhpinky123 ,
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 @singhpinky123 ,
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.
You want to count the number os stores above the average ?
You can use this measure and filter the visual:
Measure = IF(SUM('Table'[Response Rate]) > CALCULATE(AVERAGE('Table'[Response Rate]), ALL('Table'[Store])), 1, 0)
@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 new user group experience and if you are a leader please create your group
100+ sessions, 100+ speakers, Product managers, MVPs, and experts. All about Power BI. Attend online or watch the recordings.
User | Count |
---|---|
390 | |
221 | |
85 | |
71 | |
69 |
User | Count |
---|---|
449 | |
249 | |
137 | |
82 | |
78 |