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

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

Reply
andfx
Frequent Visitor

Last value based on last date filtered

Hi guys,

 

For example, I have that data:

 

FruitPriceDate

Banana1011/01/2018
Banana1211/01/2018
Banana1112/01/2018
Banana15

12/01/2018

 

I wish to retrieve the last value based on date

 

sum.JPG

 

Instead of SUM data for 11/01 I wish to retrieve Price: 12 

 

And for 12/01 retrieve Price: 15

 

Thank you.

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Assuming that value you want would be the max if more than 1 value was on the same day:

Last Price = 
CALCULATE( 
      MAX(Table2[Price]),
     LASTDATE(Table2[Date] ))

View solution in original post

1 REPLY 1
Anonymous
Not applicable

Assuming that value you want would be the max if more than 1 value was on the same day:

Last Price = 
CALCULATE( 
      MAX(Table2[Price]),
     LASTDATE(Table2[Date] ))

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors