The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hi PBI community,
I am having issues with subtotals not adding up to total items in a category in a matrix.
My goal is to get the quantities sold for a Product.
For this I need to multiply:
This is my measure formula:
And this is an example of my two tables above:
Product Table | ||
SKU | Cheese Type | Qty in Carton |
Brie01 | Brie | 10 |
Brie02 | Brie | 10 |
Brie03 | Brie | 10 |
Camembert01 | Camembert | 5 |
Sales Table | |
SKU | Qty Sold |
Brie01 | 1 |
Brie02 | 1 |
Brie03 | 1 |
Camembert01 | 3 |
As evident they are joined by the SKU column which has unique values.
Now, when filtering by "Cheese Type" I am expecting to obtain
Since Camembert is a unique value at both SKU and Cheese Type level - there are no issues returning the correct amount
However for Brie subtotal - instead of 30, I obtain 90 - which I believe happens because the engine is multiplying by 3 when finding 3 types of Brie cheese products.
What's the most effective way to deal with these type of issues
Solved! Go to Solution.
Hi @dino19547 ,
Try using following measure:
Hi Tanushree, may I ask - why does your solution work with Values(Table[SKU] and not with Values(Table[Cheese Type] under this filter context? Sorry this is a burning question I have!
Hi @dino19547 ,
Try using following measure:
User | Count |
---|---|
24 | |
9 | |
8 | |
7 | |
6 |
User | Count |
---|---|
29 | |
11 | |
11 | |
9 | |
9 |