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
chen_shany
New Member

dsum in power bi?!

hi, 

i have a table in DW that is updated every month.

how can I use DAX for summarizing "product a" for the most updated date?

 

dateproduct aproduct b
01/01/201869500
01/01/201816695221
01/01/20180128
01/01/201800
01/02/20180129
01/02/201869500
01/02/201816685220
01/02/201800
01/03/201816665222
01/03/20180127
01/03/201869497
01/03/201800
01/04/201816615221
01/04/201869497
01/04/20180127
01/04/201800
01/05/201816615221
01/05/201869497
01/05/20180127
01/05/201800
1 ACCEPTED SOLUTION
Phil_Seamark
Employee
Employee

HI @chen_shany

 

I think this calculated measure will work for the data as you present it.  I have attached a PBIX file that shows this and also a measure that works with Product B.  However I recommend you pivot your data around so that Products are in rows and not columns.

 

Most Updated Product A = 
    MAXX(
        FILTER(
            'Table1',
            'Table1'[product a]=MAX('Table1'[product a])
            ),
        'Table1'[date]
        )

To learn more about DAX visit : aka.ms/practicalDAX

Proud to be a Datanaut!

View solution in original post

1 REPLY 1
Phil_Seamark
Employee
Employee

HI @chen_shany

 

I think this calculated measure will work for the data as you present it.  I have attached a PBIX file that shows this and also a measure that works with Product B.  However I recommend you pivot your data around so that Products are in rows and not columns.

 

Most Updated Product A = 
    MAXX(
        FILTER(
            'Table1',
            'Table1'[product a]=MAX('Table1'[product a])
            ),
        'Table1'[date]
        )

To learn more about DAX visit : aka.ms/practicalDAX

Proud to be a Datanaut!

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.