cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
MohTerki
Regular Visitor

collumn dependency and stock movement and management

Hello everyone, 

I am working on a stock management and I want to evaluate final stock.

So I have collumns named "final stock", "entry", "outings".

I want to evaluate "final stock" which is previous "final stock" + same "entry" - same "outings".

Is it possible to make it in one collumn "final stock"? 

MohTerki_0-1685526302541.png

 

2 ACCEPTED SOLUTIONS
johnt75
Super User
Super User

You could create a measure like

Final stock =
VAR CurrentDate =
    MAX ( 'Date'[Date] )
VAR Result =
    CALCULATE (
        SUM ( 'Table'[Entry] ) - SUM ( 'Table'[Outings] ),
        'Date'[Date] <= CurrentDate
    )
RETURN
    Result

View solution in original post

It did work thank you, 

You need just to delete Max 

@johnt75 

MohTerki_0-1685533563496.png

 

View solution in original post

2 REPLIES 2
johnt75
Super User
Super User

You could create a measure like

Final stock =
VAR CurrentDate =
    MAX ( 'Date'[Date] )
VAR Result =
    CALCULATE (
        SUM ( 'Table'[Entry] ) - SUM ( 'Table'[Outings] ),
        'Date'[Date] <= CurrentDate
    )
RETURN
    Result

It did work thank you, 

You need just to delete Max 

@johnt75 

MohTerki_0-1685533563496.png

 

Helpful resources

Announcements
PBI Sept Update Carousel

Power BI September 2023 Update

Take a look at the September 2023 Power BI update to learn more.

Learn Live

Learn Live: Event Series

Join Microsoft Reactor and learn from developers.

Top Solution Authors