Forum Discussion
Anonymous
6 years agoNot applicable
Rank based on Cumulative SUM Column
Hi, I have this table and I need to calculate the RANK by YEAR & CYCLE depending on the cumulative POINTS by YEAR
(In the example, The CUMULATIVE POINTS for CYCLE 2 are the SUM of POINTS from CYCLE 1 & 2.
Anonymous , please find the file attached, after signature
5 Replies
- amitchandakSuper User
Anonymous , Try like
Year cycle team rank= RANKX(FILTER(ALL('Table'[Year],'Table'[Cycle],'Table'[Team]),'Table'[Year]=max('Table'[Year]) ,'Table'[Cycle]=max('Table'[Cycle])),calculate(sum(table[CUMULATIVE POINTS])))- AnonymousNot applicable
Thanks, How can I achieve the CUMULATIVE POINTS column based the previous description?
- amitchandakSuper User
Anonymous , can you share some sample-based data