Forum Discussion
Anonymous
5 years agoNot applicable
RANKX on filtered table
Apologies if this is obvious, i have not been able to find a solution for this. I have this measure RANKX(ALLSELECTED(Table1),CALCULATE([measure), , DESC) I would like to filter Table 1 so...
- 5 years ago
= IF( MAX( table1[PUBLISHED] ), RANKX( CALCULATETABLE( ALLSELECTED( table1[some column] ), table1[PUBLISHED] = TRUE ), [measure] ) )
CNENFRNL
Community Champion
5 years ago
=
IF(
MAX( table1[PUBLISHED] ),
RANKX(
CALCULATETABLE( ALLSELECTED( table1[some column] ), table1[PUBLISHED] = TRUE ),
[measure]
)
)
- Anonymous5 years agoNot applicable
Brilliant, this works perfectly, thanks for your help.