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

get last value from Date

Hello,

 

i am trying to get the last value from a date. This value should be use for the month before which are null.

 

The initial situation looks like that:

 

initial-situation

 

After a DAX-Function the result should look like this:

 

 

result

 

About help or solution suggestions, I would be very happy!

 

Thanks,

alex

 

1 ACCEPTED SOLUTION

HI, @Anonymous

You could try this formula to add a column as below:

Value 2 = 
VAR CurrentCar = 'Table'[Car]
VAR CurrentDate = 'Table'[Month]
VAR CurrentRegion = 'Table'[region]
VAR LastDateWithValue =
    IF (
        ISBLANK ( 'Table'[Value] ) = FALSE (),
        'Table'[month],
        CALCULATE (
            MIN ( 'Table'[month] ),
            FILTER (
                'Table',
                'Table'[car] = EARLIER ( 'Table'[car] )
                    && 'Table'[region] = EARLIER ( 'Table'[region] )
                    &&'Table'[month]>=EARLIER('Table'[month])
                    && ISBLANK ( 'Table'[Value] ) = FALSE ()
            )
        )
    )
RETURN
    VAR A =
        CALCULATE (
            LASTNONBLANK(  'Table'[Value], 'Table'[Value] ),
            FILTER (
                'Table',
                'Table'[Car] = CurrentCar
                    &&  'Table'[Month]  = LastDateWithValue
                    && 'Table'[region] = CurrentRegion
            )
        )
    RETURN
        IF ( ISBLANK ( 'Table'[Value] ), A, 'Table'[Value] )

Result:

2018120312.JPGDeeper testingDeeper testing

 

Best Regards,

Lin

 

 

Community Support Team _ Lin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

5 REPLIES 5
HotChilli
Super User
Super User

Looks like a good candidate for Fill Up in the Power Query Editor(Transform).

It only works for null entries, remember so you may have to use Replace first.

Anonymous
Not applicable

thank you for your suggestion! With the function Fill Up it works (with import from SAP BW).

 

But i want to use in the next time direct query (on SAP BW), so i have to solve it with a function.

 

On this topic there is nearly the same problem case:

https://community.powerbi.com/t5/Desktop/Fill-blanks-with-previous-value/m-p/492572#M229548

 

i change there solotion for my case:

Value2 = 
VAR CurrentCar = 'Table'[Car]
VAR CurrentDate = 'Table'[Month]
VAR CurrentRegion = 'Table'[region]
VAR LastDateWithValue =
    CALCULATE (
        MAX ( 'Table'[Month] );
        FILTER (
            'Table';
            'Table'[Value] <> BLANK ()
                && 'Table'[Car] = CurrentCar
                && 'Table'[Month] = CurrentDate
                && 'Table'[region] = CurrentRegion
        )
    )
Return
    CALCULATE (
        LASTNONBLANK('Table'[Value];'Table'[Value]);
        FILTER (
            'Table';
            'Table'[Car] = CurrentCar
                && 'Table'[Month] > LastDateWithValue
                && 'Table'[region] = CurrentRegion
                      )
    )

Now it looks like that:

result 2.JPG

 

Unfortunately, it is not the solution yet....

 

if would like to have a formula like this:

value3 = if('Table'[Value]=BLANK();"get last Value";"nothing")

 

Have anyone a solution?

 

Thanks,

alex

 

 

HI, @Anonymous

You could try this formula to add a column as below:

Value 2 = 
VAR CurrentCar = 'Table'[Car]
VAR CurrentDate = 'Table'[Month]
VAR CurrentRegion = 'Table'[region]
VAR LastDateWithValue =
    IF (
        ISBLANK ( 'Table'[Value] ) = FALSE (),
        'Table'[month],
        CALCULATE (
            MIN ( 'Table'[month] ),
            FILTER (
                'Table',
                'Table'[car] = EARLIER ( 'Table'[car] )
                    && 'Table'[region] = EARLIER ( 'Table'[region] )
                    &&'Table'[month]>=EARLIER('Table'[month])
                    && ISBLANK ( 'Table'[Value] ) = FALSE ()
            )
        )
    )
RETURN
    VAR A =
        CALCULATE (
            LASTNONBLANK(  'Table'[Value], 'Table'[Value] ),
            FILTER (
                'Table',
                'Table'[Car] = CurrentCar
                    &&  'Table'[Month]  = LastDateWithValue
                    && 'Table'[region] = CurrentRegion
            )
        )
    RETURN
        IF ( ISBLANK ( 'Table'[Value] ), A, 'Table'[Value] )

Result:

2018120312.JPGDeeper testingDeeper testing

 

Best Regards,

Lin

 

 

Community Support Team _ Lin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
Not applicable

thanks! This works 🙂

 

Best regards

Alex

Hi @Anonymous,

 

You can use the below DAX to create the custom column.

 

Value2 = 
VAR CurrentCar = 'Table'[Car]
VAR CurrentDate = 'Table'[Month]
VAR CurrentRegion = 'Table'[region]
VAR _LastDateWithValue =
    CALCULATE (
        MIN ( 'Table'[Month] ),
        FILTER (
            'Table',
            'Table'[Value] <> BLANK ()
                 && 'Table'[Car] = CurrentCar
                && 'Table'[Month] > CurrentDate
                && 'Table'[region] = CurrentRegion
        )
    )
var _result=   IF(ISBLANK('Table'[Value]), CALCULATE (
        FIRSTNONBLANK('Table'[Value],1),
        FILTER (
            'Table',
            'Table'[Car] = CurrentCar
                && 'Table'[Month] = _LastDateWithValue
                && 'Table'[region] = CurrentRegion
                      )
    ),'Table'[Value])
Return
_result

Below is the result I have got from the above expression.

 

Min value for date.png

You can see the pbix file for your reference.

 

 

If this helped you, please mark this post as an accepted solution and like to give KUDOS .

 

Regards,

Affan

 

 

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