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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
cctanakabr
Frequent Visitor

Measure to get the difference between values of the last two recent dates

Hi,

I'm trying to create a measure that calculates the difference between values of the last date entry and the previous last date entry.

Similar to the post:
https://community.fabric.microsoft.com/t5/Desktop/Finding-the-difference-between-values-on-two-dates...

But I have that grouped by a category (material)

The table (Base) is:

Material    Value    Date
A        20    04/03/2024
B        25    04/03/2024
C        30    04/03/2024
A        20    04/01/2024
B        24    04/01/2024
C        25    04/01/2024
A        19    03/25/2024
B        21    03/25/2024
C        12    03/25/2024

I Will put them on a pivot table (matrix) and the result must be:
       
Material    03/25/2024    04/01/2024    04/03/2024
A        blank        1        0
B        blank        3        1
C        blank        13        5

I've tried something like that

measure
VAR _currDate = MAX(Base[Date])
VAR _previous = CALCULATE (
        MAX (Base[Date]),
        FILTER ( ALLSELECTED(Base), Base[Date] < _currDate )
    )
VAR _mat = Base[Material]
RETURN
    MAX (Base[Value]) - LOOKUPVALUE (Base[Value], Base[Date], _previous, Base[Material]=_mat)

but I'm getting a error

Thanks in advance

2 ACCEPTED SOLUTIONS
Thennarasu_R
Responsive Resident
Responsive Resident

@cctanakabr 

Use this calculation to your requirements

Prev Val - Curr Val = Var _AA=LOOKUPVALUE(Measure,'dim date'[Date],'dim date'[Date]-1)
Return
CALCULATE(Measure)-_AA)
It will help to you

Thanks ,
Thennarasu 

If help this answer to you give as accepted a solution

View solution in original post

jgeddes
Super User
Super User

Another approach would be something like...

Measure = 
var _currentSum =
SUM(materialTable[Value])
var _currentMaterial = 
SELECTEDVALUE(materialTable[Material])
var _currentDate = 
SELECTEDVALUE(materialTable[Date])
var _previousDay =
MAXX(
    FILTER(ALL(materialTable), materialTable[Material] = _currentMaterial && materialTable[Date] < _currentDate),
    materialTable[Date]
)
var _previousSum = 
SUMX(
    FILTER(ALL(materialTable), materialTable[Date] = _previousDay && materialTable[Material] = _currentMaterial),
    materialTable[Value]
)
RETURN
IF(
    ISBLANK(_previousDay),
    BLANK(),
    _currentSum - _previousSum
)




Did I answer your question? Mark my post as a solution!

Proud to be a Super User!





View solution in original post

3 REPLIES 3
jgeddes
Super User
Super User

Another approach would be something like...

Measure = 
var _currentSum =
SUM(materialTable[Value])
var _currentMaterial = 
SELECTEDVALUE(materialTable[Material])
var _currentDate = 
SELECTEDVALUE(materialTable[Date])
var _previousDay =
MAXX(
    FILTER(ALL(materialTable), materialTable[Material] = _currentMaterial && materialTable[Date] < _currentDate),
    materialTable[Date]
)
var _previousSum = 
SUMX(
    FILTER(ALL(materialTable), materialTable[Date] = _previousDay && materialTable[Material] = _currentMaterial),
    materialTable[Value]
)
RETURN
IF(
    ISBLANK(_previousDay),
    BLANK(),
    _currentSum - _previousSum
)




Did I answer your question? Mark my post as a solution!

Proud to be a Super User!





Thennarasu_R
Responsive Resident
Responsive Resident

@cctanakabr 

Use this calculation to your requirements

Prev Val - Curr Val = Var _AA=LOOKUPVALUE(Measure,'dim date'[Date],'dim date'[Date]-1)
Return
CALCULATE(Measure)-_AA)
It will help to you

Thanks ,
Thennarasu 

If help this answer to you give as accepted a solution

Thanks for your help

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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