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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
So I have this DAX code that gives me the top product based on sales and that can be filtered on.
Top product =
VAR temp_table =
SUMMARIZE (
ALL ( sales_corona[Product] );
sales_corona[Product];
"SalesTotalValue"; SUM ( sales_corona[Sales] )
)
RETURN
CALCULATE (
MAX ( sales_corona[Product] );
FILTER (
ADDCOLUMNS ( temp_table; "Rank"; RANKX ( temp_table; [SalesTotalValue] ) );
[Rank] = 1
)
)
It works absolutely perfect. When I filter I get different results for different cities for example. However when I filter on the product itself. It remains the same. So let's say product X is my top product. Now I apply a filter that leaves product X out (I would assume that product X can't be my top product anymore), however it still is.