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

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
Michael92
Frequent Visitor

DAX calculation

Hello all,
I need to calculate the Stock - Request difference in the Matrix table. I always see only 3 days, yesterday, today and tomorrow. I need to calculate the current stock situation. I need to count requests and subtract it from the current situation in stock. For example, for Material M001... for 12.11.2024 it will be 80-60 =20,

for 13.11.2024 it will be 60+100-80 = -80

for 14.11.2024 it will be 60+100+20-80 = -100.
Is it possible to do this calculation in DAX and use it in matrix?

 

Michael92_0-1731489067514.png

 

Thank you

1 ACCEPTED SOLUTION

Hello,

 

thanks for your feedback. It gave me zero values ​​everywhere.

But meanwhile i found a solution. This works for me:

Difference =
    CALCULATE(
SUM('Table'[Stock]) - SUM('Table'[Request]),FILTER(ALL(Date_table), Date_table[Date]<= MAX(Date_table[Date])))

View solution in original post

2 REPLIES 2
shafiz_p
Super User
Super User

Hi @Michael92  Try below code:

Diff = 
VAR CurrentDate = MAX('Table'[Date])
VAR StockOnDate = 
    CALCULATE(
        [Stock'],
        'Table'[Date] = CurrentDate
    )
VAR RequestsUpToDate = 
    CALCULATE(
        [Request'],
        'Table'[Date] <= CurrentDate
    )
RETURN
    StockOnDate - RequestsUpToDate

Where :

[Stock'] = SUM('Table'[Stock])
[Request'] = SUM('Table'[Request])

 

Output:

shafiz_p_0-1731491550730.png

 

Considering Dataset:

shafiz_p_1-1731491582072.png

 

 

Hope this helps!!

If this solved your problem, please accept it as a solution and a kudos!!

 

 

Best Regards,
Shahariar Hafiz

Hello,

 

thanks for your feedback. It gave me zero values ​​everywhere.

But meanwhile i found a solution. This works for me:

Difference =
    CALCULATE(
SUM('Table'[Stock]) - SUM('Table'[Request]),FILTER(ALL(Date_table), Date_table[Date]<= MAX(Date_table[Date])))

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Top Solution Authors