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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request 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
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

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