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
Balos
Regular Visitor

Creating a calculated table to only show the most recent value of in a column

I have a table that contains customer name, customer id, funds, AUM (a monetary value) and a date column. The issue I have now is diffrerent date entries have different AUM values for each customer and I only need to see latest value of AUM. I don't know how to create a calculated column to do this.

1 ACCEPTED SOLUTION
V-lianl-msft
Community Support
Community Support

Hi @Balos ,

 

Try to create a new table like below:

Table2 = 
FILTER (
    'Table',
    'Table'[Date]
        = CALCULATE (
            MAX ('Table'[Date] ),
            ALLEXCEPT (
                'Table',
                'Table'[Customer id]
            )
        )
)

Vlianlmsft_0-1638861751393.pngVlianlmsft_1-1638861760384.png

 

 

Best Regards,
Liang
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

2 REPLIES 2
V-lianl-msft
Community Support
Community Support

Hi @Balos ,

 

Try to create a new table like below:

Table2 = 
FILTER (
    'Table',
    'Table'[Date]
        = CALCULATE (
            MAX ('Table'[Date] ),
            ALLEXCEPT (
                'Table',
                'Table'[Customer id]
            )
        )
)

Vlianlmsft_0-1638861751393.pngVlianlmsft_1-1638861760384.png

 

 

Best Regards,
Liang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

amitchandak
Super User
Super User

@Balos , if need a column, but column will not filter  , you need filter in visual

New column =

var _max = maxx(filter(Table, [customer id] =earlier([customer id]), [Date])

return

maxx(filter(Table, [customer id] =earlier([customer id] && [Date] =_max), [AMU])

 

a new measures 

 


lastnonbalnkvalue(Table[Date], max(Table[Amu]))

 

or

 

calculate(lastnonbalnkvalue(Table[Date], max(Table[Amu])),allexcept(Table, Table[Customer ID]))

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.