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
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
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.