Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
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
Solved! Go to Solution.
try:
Last Date = CALCULATE ( SUM ( Table1[Value] ), LASTNONBLANK ( Table1[Date], SUM ( Table1[Value] ) ) )
Thanks! Worked like a charm the first time.
try:
Last Date = CALCULATE ( SUM ( Table1[Value] ), LASTNONBLANK ( Table1[Date], SUM ( Table1[Value] ) ) )