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
KL718
Frequent Visitor

Find Latest record

Data looks like below, based on NOs. need output as "latest", "No" with reference Part. Tried below but failed.

 

REV = MAXX(FILTER(Part_Hist,Part_Hist[REV_NUM]>EARLIER(Part_Hist[REV_NUM])),IF(Part_Hist[Part Name]=EARLIER(Part_Hist[Part Name]),"Yes","No"))

 

REV = MAXX(FILTER(Table1,Table1[Nos]>EARLIER(Table1[Nos])),IF(Table1[Part]=EARLIER(Table1[Part]),"OLD","Latest"))

 

Latest.PNG

1 ACCEPTED SOLUTION
PattemManohar
Community Champion
Community Champion

@KL718 Please try this as a New Column

 

Remarks = 
VAR _Max = CALCULATE(MAX(Test260FlagLatest[Nos]),ALLEXCEPT(Test260FlagLatest,Test260FlagLatest[Part]))
RETURN IF(Test260FlagLatest[Nos]=_Max,"Latest","No")

image.png





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

Proud to be a PBI Community Champion




View solution in original post

2 REPLIES 2
PattemManohar
Community Champion
Community Champion

@KL718 Please try this as a New Column

 

Remarks = 
VAR _Max = CALCULATE(MAX(Test260FlagLatest[Nos]),ALLEXCEPT(Test260FlagLatest,Test260FlagLatest[Part]))
RETURN IF(Test260FlagLatest[Nos]=_Max,"Latest","No")

image.png





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

Proud to be a PBI Community Champion




Thanks & appreciate. 

 

I was also able to find the solution. Sharing another way which can be used to achieve the output.

 

I wrote DAX>> 

max = CALCULATE(MAX(Table1[Nos]),FILTER(Table1,Table1[Part]=EARLIER(Table1[Part])))
 
Then,
 
REV1 = IF(Table1[Nos]>=Table1[max],"Latest","Old")
 
Gives same result.

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.