The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
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] ) ) )
User | Count |
---|---|
65 | |
62 | |
60 | |
53 | |
28 |
User | Count |
---|---|
181 | |
82 | |
67 | |
48 | |
44 |