Forum Discussion
EL_C
4 years agoRegular Visitor
Line Chart data labels at last data point?
Hi, I know that series labels are displayable on the right or left of a line chart, but is it possible to display labels at the last data point for a given line? Here's an example of what I mean:...
v-zhangti
4 years agoCommunity Support
Hi, EL_C
Normally, you can't add "point" to a line chart. But you can try to create a measure to get the value for March and the other months as blank. You can try the following methods.
Measure =
Var N1=CALCULATE(MAX('Table'[Month]),ALL('Table'))
Var N2=CALCULATE(MAX('Table'[Sales]),FILTER(ALL('Table'),[Month]=N1))
return
IF(SELECTEDVALUE('Table'[Month])=N1,N2,BLANK())
Open data tab for Measure only.
Does this resemble the results 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.
EL_C
4 years agoRegular Visitor
Hi, thanks for your response, v-zhangti . Unfortunately this is a similar, if not the same, solution as the one provided by amitchandak, which only showed the dollar amount on the chart, and not the series title.
Using your example, the solution I'm looking for is for the label to read "Sales, $800".