Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
I want to count the API_proxies that have multiple Developer_app. In this case, 2 API_proxies have multiple developer Apps.
I know it's likely some combo of SUMMARIZE and FILTER...
API_proxy | Developer_App |
Member Alerts | CRM Member Advocate Application |
Member Service | CRM Member Advocate Application |
Member Service | Hybrid Member Portal |
Member Service | Member Portal |
Oath Token | CRM Member Advocate Application |
Oath Token | Hybrid Member Portal |
Solved! Go to Solution.
I had to change your count to a distinctcount to get the result I wanted:
CountOfMulitpleApps = COUNTROWS ( FILTER ( SUMMARIZE ( apige_usage_test, [API_Proxy], "MyCount", DISTINCTCOUNT ( [Developer_App] ) ), [MyCount] > 1 ) )
Try this:
CountOfMulitpleApps = COUNTROWS(FILTER(SUMMARIZE(Table,[API_Proxy],"MyCount",COUNT([Developer_App])),[MyCount]>1))
I had to change your count to a distinctcount to get the result I wanted:
CountOfMulitpleApps = COUNTROWS ( FILTER ( SUMMARIZE ( apige_usage_test, [API_Proxy], "MyCount", DISTINCTCOUNT ( [Developer_App] ) ), [MyCount] > 1 ) )
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
79 | |
73 | |
57 | |
36 | |
31 |
User | Count |
---|---|
90 | |
60 | |
60 | |
49 | |
45 |