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

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.

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
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors
Top Kudoed Authors