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
Hi all,
I want to calculate the daily return for this stock price (ignoring the weekend) by creating a new measure. May I know how should I do that by using DAX formula? I'm quite new to PowerBI. Thank you.
Solved! Go to Solution.
Here is one way to do it. Use this measure expression in a table visual with the date column from your stock table. Replace Stock with your actual table name.
Change From Prev Day =
VAR thisvalue =
MAX ( Stock[Close] )
VAR thisdate =
MAX ( Stock[Date] )
VAR prevvalue =
CALCULATE (
LASTNONBLANKVALUE (
Stock[Date],
MAX ( Stock[Close] )
),
FILTER (
ALL ( Stock[Date] ),
Stock[Date] < thisdate
)
)
RETURN
DIVIDE (
thisvalue - prevvalue,
prevvalue
)
Regards,
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
Here is one way to do it. Use this measure expression in a table visual with the date column from your stock table. Replace Stock with your actual table name.
Change From Prev Day =
VAR thisvalue =
MAX ( Stock[Close] )
VAR thisdate =
MAX ( Stock[Date] )
VAR prevvalue =
CALCULATE (
LASTNONBLANKVALUE (
Stock[Date],
MAX ( Stock[Close] )
),
FILTER (
ALL ( Stock[Date] ),
Stock[Date] < thisdate
)
)
RETURN
DIVIDE (
thisvalue - prevvalue,
prevvalue
)
Regards,
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
@mahoneypat Similar thing I need to do for Weekly and Monthly as well. Can you please help it is little urgent.
https://community.powerbi.com/t5/Desktop/stock-gainers-and-losers/td-p/3160077
@Greg_Deckler Can you please help me here?
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 | |
| 4 | |
| 3 |
| User | Count |
|---|---|
| 13 | |
| 9 | |
| 9 | |
| 8 | |
| 8 |