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
Anonymous
Not applicable

Need Help: Persistent Moving/Rolling Average

Is there a DAX formula to persist, or hold, the lastest value of the rolling/moving average whenever data points are over and to extend it thru time? 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

@Anonymous I'm sorry for that.
I'll try and see if I can get LastNonBlank to work. I propose an alternative solution. 
Get the lastdate where price/box is not blank. Look up the price/box for that date.
=
VAR lastPriceDate =
    CALCULATE (
        MAX ( Table1[Date] );
        ALLEXCEPT ( Table1; Table1[Product] );
        NOT ( ISBLANK ( Table1[Price/Box] ) )
    )
VAR LastPrice =
    CALCULATE (
        MAX ( Table1[Price/Box] );
        ALL ( Table1 );
        VALUES ( Table1[Product] );
        Table1[Date] = lastPriceDate
    )
RETURN
    IF ( ISBLANK ( Table1[Price/Box] ); LastPrice; Table1[Price/Box] )


oops.JPG
Cheers,
Pedro








View solution in original post

5 REPLIES 5
v-yuta-msft
Community Support
Community Support

Hi J-Saw,

 

Maybe something like LASTDATE() or LASTNONBLAMK(), if can't meet your requirement, please share some sample data and clarify more details about your requirement or logic.

 

Regards,

Jimmy Tao

Anonymous
Not applicable

@v-yuta-msft

Date                    Product   Boxes       Prices      Price/Box

2018-01-011710$1.43
2018-01-012512$2.40
2018-02-011910$1.11
2018-02-012612$2.00
2018-03-011   
2018-03-012   

 

So basically would be having the Price/Box for 2018-03-01 using the most recent Price/Box for product 1 and 2.

Anonymous
Not applicable

If what you're looking for is a calculated column, you can do the following:

=
IF (
    ISBLANK ( Table1[Price/Box] );
    CALCULATE (
        LASTNONBLANK ( Table1[Price/Box]; 1 );
        ALLEXCEPT ( Table1; Table1[Product] )
    );
    Table1[Price/Box]
)

Last PriceLast Price

 

To make the "Last Price" clear I chose to put in datetime information.

 

Anonymous
Not applicable

@Anonymous

Thanks. This is very helpful. However is not showing the most recent(February) Price/Box.

Anonymous
Not applicable

@Anonymous I'm sorry for that.
I'll try and see if I can get LastNonBlank to work. I propose an alternative solution. 
Get the lastdate where price/box is not blank. Look up the price/box for that date.
=
VAR lastPriceDate =
    CALCULATE (
        MAX ( Table1[Date] );
        ALLEXCEPT ( Table1; Table1[Product] );
        NOT ( ISBLANK ( Table1[Price/Box] ) )
    )
VAR LastPrice =
    CALCULATE (
        MAX ( Table1[Price/Box] );
        ALL ( Table1 );
        VALUES ( Table1[Product] );
        Table1[Date] = lastPriceDate
    )
RETURN
    IF ( ISBLANK ( Table1[Price/Box] ); LastPrice; Table1[Price/Box] )


oops.JPG
Cheers,
Pedro








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.