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
JimB-GA
Helper III
Helper III

how to calculate the lastest value in a time series

I have a simple time series that shows closing stock value by date,  I would like to return the value for the latest date.  In the following sample, the lastest date is 12/12/18 with a value of 271

 

Date	Value
12/12/18	271
12/11/18	261
12/10/18	260
12/07/18	264
12/06/18	274
12/05/18	264
12/04/18	275
12/03/18	266

Thanks!

 

Jim B

1 ACCEPTED SOLUTION
Anonymous
Not applicable

try:

Last Date =
CALCULATE (
    SUM ( Table1[Value] ),
    LASTNONBLANK ( Table1[Date], SUM ( Table1[Value] ) )
)

View solution in original post

2 REPLIES 2
JimB-GA
Helper III
Helper III

Thanks!  Worked like a charm the first time.

Anonymous
Not applicable

try:

Last Date =
CALCULATE (
    SUM ( Table1[Value] ),
    LASTNONBLANK ( Table1[Date], SUM ( Table1[Value] ) )
)

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
Top Kudoed Authors