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!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
Hi,
I want to show only the latest value in a trend line.
I am aware that I can reduce the frequency of the label, but I only want to show the latest data label.
Is it possible ?
Solved! Go to Solution.
Hi @Saniat ,
I created the following example data.
Then add the following measure to the line chart. Then turn off the data label for the [Value] series and turn on the data label for the measure [LastValue] only.
LastValue =
IF (
MAX ( 'Table'[Index] ) = MAXX ( ALLSELECTED ( 'Table' ), 'Table'[Index] ),
SUM ( 'Table'[Value] )
)
If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Saniat ,
I created the following example data.
Then add the following measure to the line chart. Then turn off the data label for the [Value] series and turn on the data label for the measure [LastValue] only.
LastValue =
IF (
MAX ( 'Table'[Index] ) = MAXX ( ALLSELECTED ( 'Table' ), 'Table'[Index] ),
SUM ( 'Table'[Value] )
)
If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thanks for this.
I have Event Date instead of Index, so tried this:
Hi @Saniat ,
The field in the MAX/MAXX function depend on your x-axis fields, is your x-axis only the [Event Date] column?
Best Regards,
Winniz
That is right, it is only Event Date field.
Hi @Saniat ,
Please try this measure to see if it returns the correct value.
LastValue =
IF (
MAX ( '1'[Event Date] ) = MAXX ( ALLSELECTED ( '1'[Event Date] ), '1'[Event Date] ),
SUM ( '1'[HC=1] )
)
Best Regards,
Winniz
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 56 | |
| 53 | |
| 40 | |
| 17 | |
| 16 |
| User | Count |
|---|---|
| 116 | |
| 107 | |
| 42 | |
| 34 | |
| 25 |