Forum Discussion
RANKX Help
- 10 years ago
Ranking =
RANKX (
FILTER (
ALL ( tblFinancialAudit );
tblFinancialAudit[year] = EARLIER ( tblFinancialAudit[Year] )
&& tblFinancialAudit[PeerGroup] = EARLIER ( tblFinancialAudit[PeerGroup] )
);
tblFinancialAudit[CurrentAssets];
;
ASC;
DENSE
)
Rymatt830 Check which [ID] column you are using to build your Table Visualization?
If your Ranking Measure look like this...
you should use tblOrganization[ID] to build your Table NOT tblFinancialAudit[ID]
Rank =
RANKX (
ALL ( tblOrganization[ID] ),
CALCULATE ( SUM ( tblFinancialAudit[CurrentAssets] ) )
)
I hope this resolves it! :smileyhappy:
Hello Vvelarde,
I'm using the same formula for my Rank measure and I don't know why but it doesn't seem to work properly..
The rank starts from 2.. look
(I don't know why I can not send the screenshot as a picutre in the post...)
Thanks