cancel
Showing results for 
Search instead for 
Did you mean: 

Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.

Reply
FrauLehmann
Frequent Visitor

Sum Total is not correct in my measure for a historical inventory

I have a very challenging problem right now with one of my Measures.
I am trying to determine from historical inventory and the value of goods in a warehouse. However, I only have the stock movements of the items available for this. These contain the quantity and only for positive stock movements the current purchase price at the time of the movement.
With my formula I can determine the stocks and prices at the respective time. In the visual of a table these are even correct on the level of the variant / the article. But the total of the table is not correct at the end and the total value of goods is not correct?

 

 

Inventory Value = 
VAR MaxIdWithNonZeroPrice =
    MAXX(
        FILTER(
            StockMovement,
            StockMovement[stockMovementPurchasePrice] <> 0
        ),
        StockMovement[stockMovementId]
    )
VAR Quantity =
CALCULATE(
    SUMX(
        StockMovement,
        StockMovement[stockMovementQuantity]
    )
)
VAR PurchasePrice =
CALCULATE(
    MAX(StockMovement[stockMovementPurchasePrice]),
    FILTER(
    StockMovement,
    StockMovement[stockMovementId] = MaxIdWithNonZeroPrice
    )
)
RETURN
CALCULATE(Quantity * PurchasePrice)

 

 

 

1 ACCEPTED SOLUTION
FrauLehmann
Frequent Visitor

Hi @v-xinruzhu-msft ,

 

thank you so much for your reply!

Yesterday I found a solution for my problem. I could solve it this way:

https://community.fabric.microsoft.com/t5/Desktop/Total-Sum-of-Measure/m-p/3078214

 

Thank you very much!

View solution in original post

2 REPLIES 2
FrauLehmann
Frequent Visitor

Hi @v-xinruzhu-msft ,

 

thank you so much for your reply!

Yesterday I found a solution for my problem. I could solve it this way:

https://community.fabric.microsoft.com/t5/Desktop/Total-Sum-of-Measure/m-p/3078214

 

Thank you very much!

v-xinruzhu-msft
Community Support
Community Support

Hi @FrauLehmann 

You can create a new measure

e.g Measure=SUMX(VALUES(StockMovement[StockMovementId]),[Inventory Value])

Then put the measure to the visual.

 

Best Regards!

Yolo Zhu

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
PBI November 2023 Update Carousel

Power BI Monthly Update - November 2023

Check out the November 2023 Power BI update to learn about new features.

Community News

Fabric Community News unified experience

Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.

Power BI Fabric Summit Carousel

The largest Power BI and Fabric virtual conference

130+ sessions, 130+ speakers, Product managers, MVPs, and experts. All about Power BI and Fabric. Attend online or watch the recordings.

Top Solution Authors
Top Kudoed Authors