Forum Discussion
Anonymous
6 years agoNot applicable
Filter records from Power BI Summarize table
Hi, I have create a below table in Power BI. I need to get max region value for each Id. Below is the DAX I am using to cretae a table in Power BI: I need to add one more clause ...
- 6 years ago
Not sure how you are calculating your "max" but here is a table expression that gets your desired result from your example table. This one determines max alphabetically, but you can substitute in another expression inside the CALCULATE if that is not correct.
Main Summary = ADDCOLUMNS ( SUMMARIZE ( Main, Main[Id] ), "Region", CALCULATE ( MAX ( Main[Region] ) ) )If this works for you, please mark it as the solution. Kudos are appreciated too. Please let me know if not.
Regards,
Pat
- Anonymous6 years ago
Hi mahoneypat , amitchandak ,
Thank you so much for your reply!
I tried the below expression and it works perfect.
Emp_Count_Region = SUMMARIZE(FILTER(SUMMARIZE(Main , Main[Id], Main[Region] ),RANKX(FILTER(SUMMARIZE(Main , Main[Id], Main[Region]), Main[Id]=EARLIER(Main[Id])),CALCULATE(count('Main'[Region]), ALLEXCEPT(Main, Main[Id], Main[Region])) , , DESC) =1), Main[Id], "Region1", calculate(max(Main[Region])))Thanks!Rinku
marceloVVR
Helper I
6 years agoTry using the DISTINCT function. After SUMMARIZE, DISTINCT (Main (ID).
maybe work
- Anonymous6 years agoNot applicable
Hi marceloVVR ,
Thanks for the reply!
I need to select max region for each id. Using distinct it would be difficult to achieve the desire record.
Thanks,
Rinku