Forum Discussion
Last value point on line chart
Hi Power BI Community!
I want to show the last value on the chart like this:
and it works with this measure:
BUT if I use the date slicer the value points disappear. I think it is because I use TODAY() which measure can I use?
Hi, Anonymous
Try to create a measure like this:
Last Value = IF ( MAX ( Dates[Date] ) = MAXX ( ALLSELECTED ( 'Dates'[Date] ), 'Dates'[Date] ), [Measure] )result:
Please refer to the attachment below for details
Hope this helps.
Best Regards,
Community Support Team _ Zeon Zheng
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
5 Replies
- v-angzheng-msftCommunity Support
Hi, Anonymous
Try to create a measure like this:
Last Value = IF ( MAX ( Dates[Date] ) = MAXX ( ALLSELECTED ( 'Dates'[Date] ), 'Dates'[Date] ), [Measure] )result:
Please refer to the attachment below for details
Hope this helps.
Best Regards,
Community Support Team _ Zeon Zheng
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly. - jdbuchanan71Super User
Anonymous
When if you try it without TODAY()?
Todays Value = VAR maxdate = CALCULATE ( MAX ( Dates[Date] ), ALLSELECTED ( Dates[Date] ) ) RETURN IF ( MAX ( Dates[Date] ) = maxdate, [Measure] )- AnonymousNot applicable
- jdbuchanan71Super User
Anonymous
I see where I went wrong, my ALLSELECTED was too narrow. I think this will give you what you are looking for without having to iterate all of the selected dates.
Todays Value = VAR maxdate = CALCULATE ( MAX ( Dates[Date] ), ALLSELECTED ( Dates ) ) RETURN IF ( MAX ( Dates[Date] ) = maxdate, [Measure] )
- jdbuchanan71Super User
Anonymous
Take a look at this post discussing the topic.