This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
Hello Experts,
I have a visual of top-3 cutomers and their revenue. The rank is done as a measure and added to a visual filter.
I'd like to include in this visual another measure, which should ignore the rank (i.e. run for all customers, and of course keep all other report filters). In my understanding, I can't use REMOVEFILTERS as I need a column as an argument.
A hint on how to achieve this would be greatly appreciated!
Thanks,
MetroRogi.
Solved! Go to Solution.
Hi @johnbasha33 ,thanks for the quick reply, I'll add further.
Hi @MetroRogi ,
Regarding your question, the argument to the function does need to be a column rather than a measure.Perhaps you could add your rankings as filters to the measure instead of adding the rankings to the filter window.
The Table data is shown below:
Total = SUM('Table'[Column2])Rank = RANKX(ALL('Table'[Column1]),[Total],,DESC,Skip)Measure = IF( [Rank] <4,[Total])
Final output:
Finally you can add additional measures.
Hi @johnbasha33 ,thanks for the quick reply, I'll add further.
Hi @MetroRogi ,
Regarding your question, the argument to the function does need to be a column rather than a measure.Perhaps you could add your rankings as filters to the measure instead of adding the rankings to the filter window.
The Table data is shown below:
Total = SUM('Table'[Column2])Rank = RANKX(ALL('Table'[Column1]),[Total],,DESC,Skip)Measure = IF( [Rank] <4,[Total])
Final output:
Finally you can add additional measures.
@MetroRogi create a measure like below, this will do the job.
Total Revenue (Ignore Rank) =
CALCULATE(
[Total Revenue],
ALL('Customer'[CustomerName])
)
Did I answer your question? Mark my post as a solution! Appreciate your Kudos !!
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 4 | |
| 3 | |
| 3 | |
| 2 | |
| 2 |
| User | Count |
|---|---|
| 6 | |
| 6 | |
| 6 | |
| 5 | |
| 4 |