Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
i have posted this question twice before but the provided answer did not solve the case.
im trying to find the previous day closing price for stocks so that i can calulate day on day change. the problem is stock market is not open everyday and in the days when the market is closed previous day price will be blank.
im using the following measure but it's not returning the intended output when i present it in card visual or in scroller custom visual
as in the image, the measure works in table visual format but doesnt give last date nonblank value in the card visual.
the expected output in the card visual should be 142.16 instead of 131062.04
appreciate the support as this is an urgent matter.
Solved! Go to Solution.
@lawada4 Try:
DOD Change Measure =
VAR __Date = MAX('Table'[Date])
VAR __Price = MAX('Table'[last closing price])
VAR __PrevDate = MAXX(FILTER(ALL('Table'), [Date] < __Date && [last closing price] <> BLANK(),[Date])
VAR __PrevPrice = MAXX(FILTER(ALL('Table'), [Date] = __PrevDate), [last closing price])
VAR __Result = DIVIDE( ( __Price - __PrevPrice ), __Price, 0 )
RETURN
__Result
Hi @lawada4
Can you provide your sample to us so that we can deal with your question better ?
Best Regards,
Community Support Team _ Ailsa Tao
@lawada4 Try:
DOD Change Measure =
VAR __Date = MAX('Table'[Date])
VAR __Price = MAX('Table'[last closing price])
VAR __PrevDate = MAXX(FILTER(ALL('Table'), [Date] < __Date && [last closing price] <> BLANK(),[Date])
VAR __PrevPrice = MAXX(FILTER(ALL('Table'), [Date] = __PrevDate), [last closing price])
VAR __Result = DIVIDE( ( __Price - __PrevPrice ), __Price, 0 )
RETURN
__Result
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 9 | |
| 5 | |
| 4 | |
| 3 | |
| 3 |
| User | Count |
|---|---|
| 23 | |
| 12 | |
| 11 | |
| 9 | |
| 8 |