Forum Discussion
Anonymous
5 years agoNot applicable
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: Todays Value = var maxdate = CALCULATE(MAX(Dates[Date]),ALLSELECTED(Dates[Da...
- 5 years ago
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.
v-angzheng-msft
5 years agoCommunity 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.