Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
olivere91
Helper I
Helper I

Incorrect Measure Totals

Hi, I'm having trouble with a measure giving inconsistent results:

 

Available Inventory =
SUM('items'[Inventory]) - SUM('Sales_Lines'[Quantity on SO])
 
Below is an exmaple, the top line is correct the bottom line is not. What can I do?
 
Capture.PNG
1 ACCEPTED SOLUTION

Try the following formula

Available Inventory = SUMX(VALUES ( 'items'[Item_Number] ), CALCULATE ( SUM ('items'[Inventory])))
-
SUMX(VALUES ( 'items'[Item_Number] ), CALCULATE ( SUM ('Sales_Lines'[Quantity on SO])))

 

View solution in original post

8 REPLIES 8
themistoklis
Community Champion
Community Champion

Hello @olivere91 ,

 

Are there any other fields in the table which are not displayed in the image that you sent?

Hi there, plenty of rows following the same formula. The only other colums not shown here are Item number and Item description. There is also a filter for item type category. 

Try the following formula

Available Inventory = SUMX(VALUES ( 'items'[Item_Number] ), CALCULATE ( SUM ('items'[Inventory])))
-
SUMX(VALUES ( 'items'[Item_Number] ), CALCULATE ( SUM ('Sales_Lines'[Quantity on SO])))

 

That didn't work. These are the column headers if that helps.

 

olivere91_0-1610920230747.png

 

@olivere91 

 

Change 'items'[Item_Number]  to No .. name of first field.

If you could share the file that would be even better. Mask any sensitive data

Yeah, I replaced the 'items'[Item_Number]  to No. Sorry I'm very new at this I don't know how to mask. 

I fixed it! the measure now reads:

 

Available Inventory = SUMX(VALUES ( 'items'[No] ), CALCULATE ( SUM ('items'[Inventory])))
-
SUMX(VALUES ( 'items'[No] ), CALCULATE ( SUM ('Sales_Lines'[On Open SO])))
 
 
Can you explain why my original measure wasn't working every time?

Hello @olivere91 ,

 

An article that explains the issue, is the following:

https://blog.enterprisedna.co/why-your-total-is-incorrect-key-power-bi-concept/

 

It has to do with how PowerBi read the context especially if you have filters applied.

SUMX is an iterator and it reads data row by row

Values function makes sure that every row displayed in the table will be read

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors