Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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 ) )
User | Count |
---|---|
75 | |
75 | |
45 | |
31 | |
27 |
User | Count |
---|---|
99 | |
89 | |
52 | |
48 | |
46 |