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
daviddalterio90
New Member

How to sum value in column with a condition in other column

Hi,
I'm having trouble calculating the sum of one column based on the condition of another column.
My dataset (an example below) contains rows that represent inventory movements, movements can be of three types:
load, unload, setup.
In the case of a setup type row it represents an inventory type row, therefore an existence at a precise date, with this condition I have to calculate the stock starting from the last setup type row onwards.

Product CodeDate (DD/MM/YYYY)TypeQty
00101/01/2021setup20
00102/01/2021load10
00103/01/2021unload-15
00104/01/2021setup14
00106/01/2021unload-3

 


the final quantity of product 001 will be 11.

could you show me a solution to calculate this sum?

Thank you for the help

 

1 REPLY 1
colacan
Resolver II
Resolver II

Hi daviddalterio90,

 

Let's say your table is CountQty, then you can use below code to count Qty since the last "setup"

 

FinalStock =

                        // To find the last Date when the type is "setup"
VAR LastSetupDate =
    CALCULATE(
        LASTNONBLANK( CountQty[CodeDate], MAX( CountQty[Qty] ) ),
        CountQty[Type] = "setup"
    )

 

                        // To filter the table where the CodeDate is bigger than LastSetupDate

VAR FilteredTable =
    CALCULATETABLE( CountQty, CountQty[CodeDate] >= LastSetupDate )

 

                        // Sum all Qty from the filtered table

VAR Result =
    SUMX( FilteredTable, CountQty[Qty] )


RETURN
    Result

 

 

Hope this helps you. Thanks

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.

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