Get certified in Microsoft Fabric—for free! For a limited time, the Microsoft Fabric Community team will be offering free DP-600 exam vouchers. Prepare 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.
Check out the October 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
33 | |
14 | |
12 | |
12 | |
9 |