Forum Discussion
Begbie
Helper I
4 years agoReturning a value from most recent date
Hi All, Seems to be going round in circles here and I'm sure the expression I'm using isn't quite right to achieve what I am after. I have the below data set: What I am trying to ach...
- 4 years ago
It looks like you're pretty close with your measure.
Does tweaking it like this give you what you expect?
Is Beacon Activated = CALCULATE ( SELECTEDVALUE ( BeaconHistory[IsCapabilityActivated] ), FILTER ( BeaconHistory, BeaconHistory[EvaluatedAt] = MAX ( BeaconHistory[EvaluatedAt] ) ) )
AlexisOlson
Super User
4 years agoIt looks like you're pretty close with your measure.
Does tweaking it like this give you what you expect?
Is Beacon Activated =
CALCULATE (
SELECTEDVALUE ( BeaconHistory[IsCapabilityActivated] ),
FILTER (
BeaconHistory,
BeaconHistory[EvaluatedAt] = MAX ( BeaconHistory[EvaluatedAt] )
)
)- Begbie4 years ago
Helper I
😍
That only seems to only gone and done it.
From one Alexis to another Alexis, thank you very much!!