Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Saniat
Helper V
Helper V

Only show the latest value in a Trend Line

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 ?

Saniat_0-1653405592195.png

 

1 ACCEPTED SOLUTION
v-kkf-msft
Community Support
Community Support

Hi @Saniat ,

 

I created the following example data. 

 

vkkfmsft_0-1653642522174.png

 

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] )
)

vkkfmsft_1-1653642577518.png

vkkfmsft_3-1653642653001.png

 

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.

 

 

 

View solution in original post

6 REPLIES 6
v-kkf-msft
Community Support
Community Support

Hi @Saniat ,

 

I created the following example data. 

 

vkkfmsft_0-1653642522174.png

 

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] )
)

vkkfmsft_1-1653642577518.png

vkkfmsft_3-1653642653001.png

 

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:

IF (
MAX ( '1'[Event Date] ) = MAXX ( ALLSELECTED ('1'), '1'[Event Date] ),
SUM ( [HC=1])
)

But for some reasons, I am getting slightly different value than expected.

Any clue what could be wrong here ?

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

amitchandak
Super User
Super User

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.