Forum Discussion
Find Most recent Record with Score
Hi Anonymous ,
You can try this measure and put it in filter:
Visual Control =
IF (
SELECTEDVALUE ( Admissions[Admission Date] )
= CALCULATE (
MAX ( Admissions[Admission Date] ),
FILTER (
ALLSELECTED ( Admissions ),
'Admissions'[Case#] IN FILTERS ( 'Admissions'[Case#] )
)
),
1,
-1
)
You will get your hoped result like this:
Here is the demo , please try it:
Best Regards,
Yingjie Li
If this post helps then please consider Accept it as the solution to help the other members find it more quickly.
- Anonymous6 years agoNot applicable
Hello, when i am trying this it seems to be only returning the most recent record for one case # not all.
- amitchandak6 years agoSuper User
Take case in a table or matrix and this as second column and check
- Anonymous6 years agoNot applicable
I see now. Is there a way to SUM that total now? So it pulled both scores in for 35 however itsnt totaling the 2 most recent records i tried up. I appreciate all the help.