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.
jdbuchanan71
Super User
5 years agoAnonymous
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] )- Anonymous5 years agoNot applicable
- jdbuchanan715 years ago
Super 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] )