Forum Discussion
Anonymous
2 years agoNot applicable
Daxx
SUMMARIZE( ADDCOLUMNS( ADDCOLUMNS( 'table aaaaaaa', "Rank", RANKX(ALL('table aaaaaaa'[sessionid]), 'table aaaaaaa'[sessionid], , ASC) ), "IsF...
- Anonymous2 years ago
Hi Anonymous ,
Please try the following methods and check if they can solve your problem:
1.Create the simple table.
2.Create the new table to Rank.
Table Rank_id = SUMMARIZE( 'Table', 'Table'[sessionid], "Total Sessions", CALCULATE( SUM('Table'[session]) ), "Rank", RANKX(ALL('Table'[sessionid]), 'Table'[sessionid], , ASC) )3.Drag the table into the table visual. The result is shown below.
Best Regards,
Wisdom Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
2 years agoNot applicable
Hi Anonymous ,
Please try the following methods and check if they can solve your problem:
1.Create the simple table.
2.Create the new table to Rank.
Table Rank_id = SUMMARIZE(
'Table',
'Table'[sessionid],
"Total Sessions",
CALCULATE(
SUM('Table'[session])
),
"Rank", RANKX(ALL('Table'[sessionid]), 'Table'[sessionid], , ASC)
)
3.Drag the table into the table visual. The result is shown below.
Best Regards,
Wisdom Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.