Forum Discussion

marciomendonca's avatar
marciomendonca
Frequent Visitor
4 years ago
Solved

Show only latest data labels in a Line Chart

Good afternoon, community. Straight to business: I want to display only the latest value on the end of each line of this Chart

 

To find the latest value I created this measure:

valor_max =
VAR max_data = CALCULATE(MAX(base_dash[data]), ALLSELECTED(base_dash[data]))
RETURN
IF( MAX(base_dash[data]) >= maxdata, [medidores_noticados])
 
But now I don't know how to display it as a data lable.

 

  • marciomendonca ,Have you tried Charticulator? Here is how I created a chart only showing the data label of last month. 

     

5 Replies