Forum Discussion
fordmichael20
9 years agoFrequent Visitor
Top N Within Matrix Table
Hey Power BI Community, I have a question regarding potential augmentation and context-changing of Power BI Top N filter capabilities. I have a matrix table right now that deals with positions...
- 9 years ago
Hi fordmichael20,
Add a measure to your table with the following formula:
Rank_WITH_ALL = RANKX ( ALL ( Portfolio[Issuer] ), CALCULATE ( SUM ( Portfolio[Market Value] ) ) )Then use this column in your matrix, if you need to hide it just reduce the size of the column
The second image is with the column reduced.
Regards,
MFelix
MFelix
9 years agoSuper User
Hi fordmichael20,
Add a measure to your table with the following formula:
Rank_WITH_ALL =
RANKX (
ALL ( Portfolio[Issuer] ),
CALCULATE ( SUM ( Portfolio[Market Value] ) )
)Then use this column in your matrix, if you need to hide it just reduce the size of the column
The second image is with the column reduced.
Regards,
MFelix
fordmichael20
9 years agoFrequent Visitor
Hey,
This is great, thanks so much for your help.
Mike