We're giving away 30 tickets for FREE! Share your story, your vision, or your hustle and tell us why YOU deserve a ticket.
Apply nowWin a FREE 3 Day Ticket to FabCon Vienna. Apply now
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 |
---|---|
14 | |
12 | |
7 | |
7 | |
6 |
User | Count |
---|---|
28 | |
20 | |
14 | |
11 | |
5 |