Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin 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.
Hello All,
how can I insert a linear trendline from zero to a pre-defined (max) value?
Lines are:
green: running total last year
blue: running total this year
red: target for this year
I can have the dataset for the red line but without dates, so it indicates the full monthly volume to be achieved by the end of the month.
Thank you a lot.
Solved! Go to Solution.
Hi @Anonymous,
You can write a measure to calculate out correspond value as 'reference line', then drag it to value field to achieve your requirement:
Reference =
VAR _current =
SELECTEDVALUE ( 'Sample'[Index] )
VAR _min = 0
VAR _max =
MAXX ( ALLSELECTED ( 'Sample' ), [Amount] )
RETURN
IF (
_current = MINX ( ALLSELECTED ( 'Sample'[Index] ), [Index] ),
0,
_current * _max
/ COUNTROWS ( ALLSELECTED ( 'Sample' ) )
)
If you still confused on coding formula, please share some sample data for test.
Regards,
Xiaoxin Sheng
@Anonymous I was using the solution as above mentioned.
If you have .pbix file, would appreciate it. if not then I have to create sample data to show why the above formula is not working on my side.
thank you in advance for the support.
Hi @Anonymous,
You can write a measure to calculate out correspond value as 'reference line', then drag it to value field to achieve your requirement:
Reference =
VAR _current =
SELECTEDVALUE ( 'Sample'[Index] )
VAR _min = 0
VAR _max =
MAXX ( ALLSELECTED ( 'Sample' ), [Amount] )
RETURN
IF (
_current = MINX ( ALLSELECTED ( 'Sample'[Index] ), [Index] ),
0,
_current * _max
/ COUNTROWS ( ALLSELECTED ( 'Sample' ) )
)
If you still confused on coding formula, please share some sample data for test.
Regards,
Xiaoxin Sheng
I am having the same issue. I have a cumulative measure that adds revenue over time, however I am trying to add a linear reference line from 0 (zero) at the beginning of the year, to the target (indicated as a SUM measure), at the end of the year. I am able to get the formula to give a strait horizontal line at zero, and I can set it a the target, but I am unable to get it to Return a line from zero to my target mesure. Could you explain the formula a bit further?
Aaron
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 |
|---|---|
| 76 | |
| 37 | |
| 31 | |
| 29 | |
| 26 |