Forum Discussion
Naveennegi119
Helper III
8 years agoIndex data highest to lowest
Hi all, Data Expect result Sub Value Index Sub Value Index ABC 30 ABC 30 4 ABC 13 ABC 13 9 ABC 44 ABC 44 2 ABC 25 ...
- 8 years ago
You can add a new calculated column using the following formula.
New Column = RANKX( FILTER('Table1', 'Table1'[Sub]=EARLIER('Table1'[Sub]) ), 'Table1'[Value] )
Phil_Seamark
Microsoft Employee
8 years ago
You can add a new calculated column using the following formula.
New Column =
RANKX(
FILTER('Table1',
'Table1'[Sub]=EARLIER('Table1'[Sub])
),
'Table1'[Value]
)- Naveennegi1198 years ago
Helper III
Hi Phil_Seamark,
Thanks for fast reply.
it's working with small issue.
it's giving same no. for duplicate data.
Note:- Change few data to show you result.
any advise for that.
Regards,
NICK
- Anonymous8 years agoNot applicable
Hi Naveennegi119,
Actually, current power bi will rank duplicate records as same ranking number.
AFAIK, power bi not contains row index and column index, so it is impossible to ranking duplicate records as different numbers.Regards,
Xiaoxin Sheng