The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
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 |
---|---|
15 | |
12 | |
8 | |
7 | |
7 |
User | Count |
---|---|
24 | |
21 | |
12 | |
10 | |
7 |