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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi.
I have the following line chart with a cummulative PnL.
My issue is that I want the line to start from zero no matter what time interval I am viewing with the slicer. So substracting the first PnL observation from the PnL time series.
I have two columns:
- Performance[PnL] (cummulative PnL)
- Performance[ValueDateTimeUTC] (Datetime column)
Thanks.
Best,
Jesper
Solved! Go to Solution.
I think I finally found the solution:
The following measure did the job:
ScaledToZero =
VAR min_val = CALCULATE(Min(Performance[ValueDateTimeUTC]), ALLSELECTED(Performance[ValueDateTimeUTC], Performance[PnL]))
RETURN
Min(Performance[PnL]) - CALCULATE(
SUM(Performance[PnL]),Performance[ValueDateTimeUTC] = min_val)
I think I finally found the solution:
The following measure did the job:
ScaledToZero =
VAR min_val = CALCULATE(Min(Performance[ValueDateTimeUTC]), ALLSELECTED(Performance[ValueDateTimeUTC], Performance[PnL]))
RETURN
Min(Performance[PnL]) - CALCULATE(
SUM(Performance[PnL]),Performance[ValueDateTimeUTC] = min_val)
Hi @MahyarTF.
The problem is not to change the y-axis, but to scale the time series such that it starts at y=0. I am pretty sure there is no chart setting that can do this job, but a measure has to be created.
Best
Jesper
Hi,
Use the Minimum Range for Y-axis in your chart :
Appreciate your Kudus.
Please mark it as a solution if helps you.
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 41 | |
| 39 | |
| 37 | |
| 29 | |
| 24 |
| User | Count |
|---|---|
| 122 | |
| 110 | |
| 83 | |
| 69 | |
| 68 |