Forum Discussion
lanluokaka
Microsoft Employee
4 years agoGroup max related value from another table
I have 2 tables, one just has ids, and the other one has those id usages. I want find the most used SDK within certain days. How do I make a measure to still keep the time slicer? And find the max us...
- 4 years ago
lanluokaka Seems like Lookup Min/Max: Lookup Min/Max - Microsoft Power BI Community. In your case:
Measure = VAR __ID = MAX('table 1'[id]) VAR __MostUsage = MAXX(FILTER('table 2',[id]=__ID),[usage]) RETURN MAXX(FILTER('table 2',[id] = __ID && [usage]=__MostUsage),[sdk])
lanluokaka
Microsoft Employee
4 years agoThanks, Greg! I just found it after I add some values from another table. It gives me all repeat measure results for one id.
lanluokaka
Microsoft Employee
4 years agoGreg_Deckler single row was expected. Now it has multiple repeated rows. Do you have suggestions?
This is the screenshot before the measure.
- Greg_Deckler4 years ago
Community Champion
lanluokaka Are you missing a relationship?
- lanluokaka4 years ago
Microsoft Employee
I do have a relationship, it's based on the id.
- Greg_Deckler4 years ago
Community Champion
lanluokaka So, what do you want to happen? Which row should display?