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

Add the most recent exclusive records

I have a table with the key field (CHAVE), values and dates.
I would like an expression to add only the unique records based on the most recent date.

For example, for KEY XXX I would just like to add the value 10, for YYY just add 40....  and then put the sum of these unique records in a table by date.

 

luguilherme_0-1597260563118.png

 

 

and in the end I would like to be able to add a table as follows:

 

AAA   10

BBB    30

CCC   40

XXX   10

YYY  40

ZZZ   90

total  220

3 REPLIES 3
harshnathani
Community Champion
Community Champion

Hi @Anonymous ,

 

Try this measure.

 

Last Value =  LASTNONBLANKVALUE('Table'[DATA],MAX('Table'[Peso]))

 

 

Regards,

Harsh Nathani

mahoneypat
Employee
Employee

Please try this measure expression, replacing Table with your actual table name.

 

 

Sum of Latest Values =
VAR summary =
    ADDCOLUMNS (
        VALUES ( Table[CHAVE] ),
        "@value", CALCULATE ( LASTNONBLANKVALUE ( Table[Date], MAX ( Table[Peso] ) ) )
    )
RETURN
    SUMX ( summary, [@value] )

 

 

If this works for you, please mark it as the solution.  Kudos are appreciated too.  Please let me know if not.

Regards,

Pat





Did I answer your question? Mark my post as a solution! Kudos are also appreciated!

To learn more about Power BI, follow me on Twitter or subscribe on YouTube.


@mahoneypa HoosierBI on YouTube


lbendlin
Super User
Super User

Does it have to be in DAX, and can you provide the sample data in usable form?

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.