Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
So, this problem involves 3 tables. A master data table let's call it customer table. A category table, that related a customer number to a category. Finally i have a fact table holding transactions.
I wan't to create a visualization that shows summed amount for each customer and i also want to see how much that amount corresponds in relation to the entire category.
Below i have tried to create a demo of what i would want end users to see.
The problem is i don't know how to make the measure to right "Total Category Amount" ignore every filter on this table. Remember that the link between the table that holds the category is via the customer number. The customer master data is then linked to the fact table with the measures. It seems that power bi is troubled when i want to remove the customer number filter from the measure.
Here is also a very simplified version of the data model
Please help and tell me if you need more clarification.
Solved! Go to Solution.
Hi,
If I get well your issue, you are looking for the ALL function.
Using ALL( [CustomerKey] ) in your CALCULATE will remove the filter based on Customer key.
Depending on your visual but according to your screenshot it might be :
ALL( [CustomerKey], [CustomerName] )
Hope it helps, let us know
Hi,
If I get well your issue, you are looking for the ALL function.
Using ALL( [CustomerKey] ) in your CALCULATE will remove the filter based on Customer key.
Depending on your visual but according to your screenshot it might be :
ALL( [CustomerKey], [CustomerName] )
Hope it helps, let us know
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
15 | |
9 | |
7 | |
7 | |
6 |
User | Count |
---|---|
22 | |
11 | |
10 | |
10 | |
8 |