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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Jmaguirre7
Frequent Visitor

How to reference the last value a measure produces, within that measure?

I have measure that is a running total across a calendar table.  It adds known future inventory injections and subtracts estimated sales for each day.

I would like it to check if the value of the previous date was less than zero.  That way I can modify the measure to stop subtracting the estimated daily sales until another positive inventory injection is received.

Or maybe there is a better way, I have attached a picture of the table for reference.Inventory Problem.png 

1 ACCEPTED SOLUTION
selimovd
Super User
Super User

Hello @Jmaguirre7 ,

 

sure, save the MAX date in a variable and subtract one day.

Then in the Calculate statement use your measure and overwrite the date with yesterday's date. If it's smaller than 0 give another result, otherwise your measure:

Running Total yesterday =
VAR vPrevDay = MAX( 'DateTable'[Date] ) - 1
VAR vRunningTotalYesterday =
    CALCULATE(
        [Running Total],
        'Date'[Date] = vPrevDay
    )
RETURN
    IF(
        vRunningTotalYesterday < 0,
        BLANK(),
        [Running Total]
    )

 

If you need any help please let me know.
If I answered your question I would be happy if you could mark my post as a solution ✔️ and give it a thumbs up 👍
 
Best regards
Denis
 

View solution in original post

2 REPLIES 2
selimovd
Super User
Super User

Hey @Jmaguirre7 ,

 

did it work with the measure I proposed?

I'm curious if you could solve this issue 🙂

 

If you need any help please let me know.
If I answered your question I would be happy if you could mark my post as a solution ✔️ and give it a thumbs up 👍
 
Best regards
Denis
 
selimovd
Super User
Super User

Hello @Jmaguirre7 ,

 

sure, save the MAX date in a variable and subtract one day.

Then in the Calculate statement use your measure and overwrite the date with yesterday's date. If it's smaller than 0 give another result, otherwise your measure:

Running Total yesterday =
VAR vPrevDay = MAX( 'DateTable'[Date] ) - 1
VAR vRunningTotalYesterday =
    CALCULATE(
        [Running Total],
        'Date'[Date] = vPrevDay
    )
RETURN
    IF(
        vRunningTotalYesterday < 0,
        BLANK(),
        [Running Total]
    )

 

If you need any help please let me know.
If I answered your question I would be happy if you could mark my post as a solution ✔️ and give it a thumbs up 👍
 
Best regards
Denis
 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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