Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi guys,
For example, I have that data:
FruitPriceDate
| Banana | 10 | 11/01/2018 |
| Banana | 12 | 11/01/2018 |
| Banana | 11 | 12/01/2018 |
| Banana | 15 | 12/01/2018 |
I wish to retrieve the last value based on date
Instead of SUM data for 11/01 I wish to retrieve Price: 12
And for 12/01 retrieve Price: 15
Thank you.
Solved! Go to Solution.
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] ))
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] ))
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 103 | |
| 80 | |
| 58 | |
| 51 | |
| 46 |