Forum Discussion
Top 80% Engagement
- 9 years ago
ive never done this before but maybe this will work
engagementmeasure = sum(engagment)
incrementalengagement =
VAR CurrentEngagement = Table[engagementmeasure]
RETURN
SUMX (
FILTER ( table, table[engagementmeasure] >= incrementalengagement ),
table[enagementmeasure]
)Table[IncrementPCT] =
DIVIDE (table[incrementalengagement],
sum (engagementmeasure))
then based on that result theoretically you can create a table where the Table[IncrementPCT] <= 0.8
ive never done this before but maybe this will work
engagementmeasure = sum(engagment)
incrementalengagement =
VAR CurrentEngagement = Table[engagementmeasure]
RETURN
SUMX (
FILTER ( table, table[engagementmeasure] >= incrementalengagement ),
table[enagementmeasure]
)
Table[IncrementPCT] =
DIVIDE (table[incrementalengagement],
sum (engagementmeasure))
then based on that result theoretically you can create a table where the Table[IncrementPCT] <= 0.8
- qjc1718199 years agoFrequent Visitor
- GIO2000118 years agoAdvocate I
Hello,
But with this approaching, you have less than 80 %. If I want to cover that 80 %, what should I do? Without manually change the 80 % for the value of the next Item.
I need to know the clients that are the 80 %, but it must be at least 80 %, If I set less or equal than 80 %, this approaching will only be correct when the clients do exactly 80 %, but if they do 81 %, it will take earlier item (maybe 78 %).
Any suggestion?
Regards!
- Ashish_Mathur8 years agoSuper User
- GIO2000118 years agoAdvocate I
What I needed was the number of the clients, in your example the measure would be "3".
So I get the approach with this:
I have a CalculateTable that summarizes the clients' name by month (that is why I use CALCULATETABEL and ALLEXCEPT with the calendar table in my measures) and also ranked them by volume.
So in this table I created a cummulative measure and total volume (no matter what filter apllies, only filters from the calendar table).
Cumulative Volume_RMX = CALCULATE(SUM(Rank_clientes_RMX[Volumen]), FILTER( CALCULATETABLE(Rank_clientes_RMX,ALLEXCEPT(Rank_clientes_RMX, Calendario, Rank_clientes_RMX[Calendar YearMonth])), Rank_clientes_RMX[Rank]<=MAX(Rank_clientes_RMX[Rank]) ) )volume_all_month_RMX = CALCULATE(SUM(Rank_clientes_RMX[Volumen]),ALLEXCEPT(Rank_clientes_RMX,Calendario,Rank_clientes_RMX[Calendar YearMonth]))
Then I created the final measure
Clientes 80 % vol. = CALCULATE(COUNTROWS(Rank_clientes_RMX), ALLEXCEPT(Rank_clientes_RMX, Calendario, Rank_clientes_RMX[Calendar YearMonth]), FILTER( CALCULATETABLE(Rank_clientes_RMX, ALLEXCEPT(Rank_clientes_RMX, Calendario, Rank_clientes_RMX[Calendar YearMonth])), [Cumulative Volume_RMX]<[volume_all_month_RMX]*0.8 ) )+1The final measure, get the number of clients that makes less than 80 % of the total volume + 1.
I hope it helps someone.
Regards,
Giovany