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