Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
I have 2 columns for investment data, amount invested & a date. I would like a line chart that grows along with the dates instead of plotting them down based upon their value - similar to how Robinhood or any stock app shows their line graphs
right now it looks like this
I would want the line to cumalitively grow larger based upon the total at that correlated date - any idea on how to achieve this?
Solved! Go to Solution.
Hi, @simpleere
I simulated some data hoping to restore your problem.
Cumulative =
CALCULATE (
SUM ( 'Table'[Investment] ),
FILTER ( 'Table', [Year] <= EARLIER ( 'Table'[Year] ) )
)
Is the picture on the right the result you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @simpleere
I simulated some data hoping to restore your problem.
Cumulative =
CALCULATE (
SUM ( 'Table'[Investment] ),
FILTER ( 'Table', [Year] <= EARLIER ( 'Table'[Year] ) )
)
Is the picture on the right the result you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
are you referring to the candlestick visual?
https://www.sqlshack.com/candlestick-chart-for-stock-data-analysis-in-power-bi-desktop/
Proud to be a Super User!
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 53 | |
| 48 | |
| 31 | |
| 16 | |
| 14 |
| User | Count |
|---|---|
| 86 | |
| 72 | |
| 38 | |
| 27 | |
| 24 |