Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
marculos
Regular Visitor

New Table based on maxdate

Hi, 

 

I am trying to create a table of unique product codes and latest date using "New table" in Power BI.  I need this so I can use the product code in a relationship. 

 

So e.g ProductTable1  

 

AG00001   16/10/2018

AG00001   15/10/2018

AG00001   14/10/2018

AG00002   10/10/2018

AG00002    12/10/2018

 

ProductTableLatest

 

AG00001   16/10/2018

AG00002   12/10/2018

 

If I use SELECTCOLUMNS as below I get 31/12/2018 for all dates.

 

ProductTableLatest = SELECTCOLUMNS(ProductTable1,"LatestDate",MAX(ProductTable1[ProductDate].[Date]), "Serial Number", ProductTable1[SerialNumber])

 

 Appreciate any help !

 

1 ACCEPTED SOLUTION
PattemManohar
Community Champion
Community Champion

@marculos Please try this as "New Table"

 

ProductTableLatest = SUMMARIZE(Test12InputCalcTable,Test12InputCalcTable[Product],"Latest",MAX(Test12InputCalcTable[Date]))




Did I answer your question? Mark my post as a solution!

Proud to be a PBI Community Champion




View solution in original post

3 REPLIES 3
AkhilAshok
Solution Sage
Solution Sage

This should work:

ProductTableLatest =
SUMMARIZECOLUMNS (
    ProductTable1[SerialNumber],
    "LatestDate", MAX ( ProductTable1[ProductDate].[Date] )
)
PattemManohar
Community Champion
Community Champion

@marculos Please try this as "New Table"

 

ProductTableLatest = SUMMARIZE(Test12InputCalcTable,Test12InputCalcTable[Product],"Latest",MAX(Test12InputCalcTable[Date]))




Did I answer your question? Mark my post as a solution!

Proud to be a PBI Community Champion




wow you guys are fast! many thanks for all your help 🙂 🙂 

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.