The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Solved! Go to Solution.
Hi @Anonymous ,
Does market share require a percentage result, if yes, see the solution below.
Sample data
You can group by year and market to calculate the number of brands (without deduplication). The measure is as follows.
Brand quantities =
CALCULATE (
COUNT ( 'Table'[Brand] ),
FILTER (
ALLSELECTED ( 'Table' ),
[Year] = MAX ( 'Table'[Year] )
&& [Market] = MAX ( 'Table'[Market] )
)
)
Percentage = DIVIDE([Brand quantities],CALCULATE(COUNT('Table'[Brand]),ALLSELECTED('Table')))
Regarding Penetration, it is better to give an expected result and explain it.
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous ,
Does market share require a percentage result, if yes, see the solution below.
Sample data
You can group by year and market to calculate the number of brands (without deduplication). The measure is as follows.
Brand quantities =
CALCULATE (
COUNT ( 'Table'[Brand] ),
FILTER (
ALLSELECTED ( 'Table' ),
[Year] = MAX ( 'Table'[Year] )
&& [Market] = MAX ( 'Table'[Market] )
)
)
Percentage = DIVIDE([Brand quantities],CALCULATE(COUNT('Table'[Brand]),ALLSELECTED('Table')))
Regarding Penetration, it is better to give an expected result and explain it.
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Anonymous , Example measure
Share = divide( countrows(Table), calculate(countrows(Table), filter(allselected(Table), Table[Market] = max( Table[Market] ) )))
Avg Share =
Averagex(values(Table[Consultant]), [Share])
User | Count |
---|---|
28 | |
11 | |
8 | |
6 | |
5 |
User | Count |
---|---|
35 | |
14 | |
12 | |
9 | |
7 |