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
FayeB1901
Helper I
Helper I

Report Last Non Blank Row

Hi there
I'm trying to create a calculated column that returns the last non blank value by a given date. I've tried several DAX options but can't quite get this working. See data below - in this example I would expect a value of -75.71 for 10/11/21.

FayeB1901_0-1638306414462.png

Thanks in advance
Faye


2 ACCEPTED SOLUTIONS
VahidDM
Super User
Super User

Hi @FayeB1901 

 

Try this:

Measure=
Var _A = max(table[Date])
If(isblank(max(table[value])),
calculate(max(table[value]),filter(all(table),table[Date]<_A&&table[value]<>blank())),
max(table[value])
)

 

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn: 
www.linkedin.com/in/vahid-dm/

 

 

View solution in original post

Hi Vahid 

 

No unfortunately no good - not sure what is going on here with the calculation!

FayeB1901_0-1638320707322.png

 

View solution in original post

7 REPLIES 7
VahidDM
Super User
Super User

Hi @FayeB1901 

 

Try this:

Measure=
Var _A = max(table[Date])
If(isblank(max(table[value])),
calculate(max(table[value]),filter(all(table),table[Date]<_A&&table[value]<>blank())),
max(table[value])
)

 

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn: 
www.linkedin.com/in/vahid-dm/

 

 

Hi Vahid 

 

No unfortunately no good - not sure what is going on here with the calculation!

FayeB1901_0-1638320707322.png

 

@FayeB1901 

Try this:

 

Meas1ure =
VAR _A =
    MAX ( table[Date] )
VAR _B =
    CALCULATE (
        MAX ( table[Date] ),
        FILTER ( ALL ( table ), table[Date] < _A && table[value] <> BLANK () )
    )
RETURN
    IF (
        ISBLANK ( MAX ( table[value] ) ),
        CALCULATE ( MAX ( table[value] ), FILTER ( ALL ( table ), table[Date] = _B ) ),
        MAX ( table[value] )
    )

 

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn: 
www.linkedin.com/in/vahid-dm/

 

 

@Vahid got it - it was filter context - wanted ALLSELECTED not ALL. Thank you!

@VahidDM any ideas on how to calculate as a column? Those values are Lat/Lon that I need to plot on the map & ARCGIS won't work with a measure ...

@FayeB1901 

 

Try this to add a column:

Column=
VAR _A =
   [Date]
VAR _B =
    CALCULATE (
        MAX ( table[Date] ),
        FILTER ( ALL ( table ), table[Date] < _A && table[value] <> BLANK () )
    )
RETURN
    IF (
        ISBLANK ( [value] ),
        CALCULATE ( MAX ( table[value] ), FILTER ( ALL ( table ), table[Date] = _B ) ),
        [value] )
    )

 

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn: 
www.linkedin.com/in/vahid-dm/

 

 

@VahidDM no not quite - seems like a filter context thing, like it's using a result not from the relevant ID maybe?

FayeB1901_0-1638394492028.png

 



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.