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
Hello,
Someone can help me please, how I can add number of the latest value at the end of the chart ?
as I showed in the picture:
Thank you
Solved! Go to Solution.
Hi @Nihed ,
From what I understand, you only want to show the data labels for the last month's value in the line chart, right?
Please create a measure:
Measure =
var _maxMonth= MAXX(ALL('Table'),MONTH([Date]))
return CALCULATE(SUM('Table'[Value]),FILTER('Table',MONTH([Date])=_maxMonth))
And apply it to Values field as well, then enable the Customize series option as the blog provided by @amitchandak mentioned:
Best Regards,
Eyelyn Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Nihed ,
From what I understand, you only want to show the data labels for the last month's value in the line chart, right?
Please create a measure:
Measure =
var _maxMonth= MAXX(ALL('Table'),MONTH([Date]))
return CALCULATE(SUM('Table'[Value]),FILTER('Table',MONTH([Date])=_maxMonth))
And apply it to Values field as well, then enable the Customize series option as the blog provided by @amitchandak mentioned:
Best Regards,
Eyelyn Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 20 | |
| 10 | |
| 9 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 32 | |
| 31 | |
| 18 | |
| 12 | |
| 11 |