Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hi Community
I am trying to create a ranked Table Visual for Sales of Articles and the visual should just show the articles where the rankx measure in the first column of the table visual has a value resp. all articles which have a value in the Sales column.
In the example below I'd like to just show the first row, where there are actual sales on that article.
The rest of the articles should not be shown in the visual.
Any suggestions to achieve that?
Thanks in advance for any help!
Additional Info for the measures used:
TopRanking Sum Article =
IF([Turnover Sum] >= 1 ;
RANKX(
ALLSELECTED(DimArticle[ArticleName]);
[Turnover Sum]
;;0;Dense))
ArticleName = DimArticle[ArticleName]
Sales = [Turnover **bleep**] -
IF(
AND(
MIN(DimDate[MonthNr]) <> 1;
NOT(ISBLANK([Turnover **bleep**]))
);
CALCULATE(
[Turnover **bleep**];
PREVIOUSMONTH(DimDate[Date])
)
)
with [Turnover **bleep**] = CALCULATE(
SUM(Fact[Turnover]);
FILTER(
DimDate;
DimDate[Date] = MAX(Fact[Date])
))
Solved! Go to Solution.
Hi @Anonymous
You can filter the TopRanking Sum Article measure on the table visual. Set it to show items when the value is not blank and apply this filter.
Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.
Hi @Anonymous
You can filter the TopRanking Sum Article measure on the table visual. Set it to show items when the value is not blank and apply this filter.
Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.
**bleep** = abbreviation for cumulative lol
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 50 | |
| 49 | |
| 35 | |
| 15 | |
| 14 |
| User | Count |
|---|---|
| 91 | |
| 75 | |
| 41 | |
| 26 | |
| 25 |