Forum Discussion
Anonymous
6 years agoNot applicable
add incremental Column
Hi All,I need small help. How to provide Incremental Ranking, Incremental number or Add dynamic column to show on serial wise like Top 50 Rakings.
- 6 years ago
Hi Anonymous ,
Try to create two measures:
Max = MAX('Table (2)'[Value])Rank = RANKX( ALLSELECTED( 'Table (2)'), [Max], , DESC, Dense )Best regards,
Lionel ChenIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
v-lionel-msft
6 years agoCommunity Support
Hi Anonymous ,
Try to create two measures:
Max = MAX('Table (2)'[Value])Rank =
RANKX(
ALLSELECTED( 'Table (2)'),
[Max],
, DESC, Dense
)
Best regards,
Lionel Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.