Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!Prepping for a Fabric certification exam? Join us for a live prep session with exam experts to learn how to pass the exam. Register 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
Check out the April 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
72 | |
67 | |
67 | |
42 | |
42 |
User | Count |
---|---|
46 | |
40 | |
28 | |
26 | |
25 |