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
Hello Ashish_Mathur,
the solution you provided fits to my problem. But I need to include a time filter as well.
I reconstructed your solution. The Ranking works. But the cumulative total doesn´t work.
Kumulativer Umsatz = SUMX(TOPN([Pos. Debitoren];CALCULATETABLE(VALUES(Kalender[Datum]);ALL(Kalender[Datum]));[Absoluter Umsatz]);[Absoluter Umsatz])
I add my measures to your code.
Pos. Debitoren = Rank
Kalender[Datum] = Date
[Absoluter Umsatz) = Total
Do you have an idea to solve my problem ?
Thanks for your help!
Christian
- Ashish_Mathur8 years agoSuper User
Hi,
Share a dataset and show the expected result.
- Anonymous8 years agoNot applicable
Hi,
thanks for your answer.
Your solution works perfectly. I added the wrong columns to the mesure. So it was just my fault.
Sorry for that
Christian
- Anonymous8 years agoNot applicable
Hi,
thanks for your answer.
Your solution works perfectly. I added the wrong columns to the mesure. So it was just my fault.
Sorry for that
Christian