Forum Discussion
DFPRO
2 years agoFrequent Visitor
Calculating a Rank with Time Filters
I have a few measures that go into creating a Rank of a performance score for each person based on numerous performance scores received over the course of a year. I then created a measure that will d...
Anonymous
2 years agoNot applicable
Hi DFPRO ,
Please try:
var _Table = summarize(filter(allselected(People),People[Test Count]>0),People[Name],"Performance Rank",[Performance Rank])
var _Slicer = selectedvalue(People[Name])
var _rank = filter(_Table,People[Name]=_Slicer)
return
Maxx(_rank,[Performance Rank])
If the above one can't help you get the desired result, please provide some sample data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. Thank you.
Best Regards,
Neeko Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.