Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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.
User | Count |
---|---|
25 | |
12 | |
8 | |
6 | |
6 |
User | Count |
---|---|
26 | |
12 | |
11 | |
8 | |
6 |