Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. 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!
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 56 | |
| 47 | |
| 44 | |
| 20 | |
| 20 |
| User | Count |
|---|---|
| 72 | |
| 70 | |
| 34 | |
| 33 | |
| 31 |