The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hi,
I'm trying to replicate the Excel function COUNTIF, to count how many times a manager's name appears in a table. I have read numerous guides on this, and tried a few different ways of solving it, but all end up in the same way. Counting all rows, instead of the ones filtered.
Here is one of the measures I use in a column:
Solved! Go to Solution.
@Anonymous , the Above formula, should work for what you shown in excel
Team size = CALCULATE(COUNT(Table2[Manager]),FILTER(allselected(Table2),Table2[Manager]=max(Table2[Manager])))
or
Team size = CALCULATE(COUNT(Table2[Manager]),Allexcept(Table2,Table2[Manager]))
@Anonymous , the expected output is not clear . But try like
Team size = CALCULATE(COUNTROWS(Table2),FILTER(allselected(Table2),Table2[Manager]=max(Table2[Manager])))
Thanks @amitchandak. It did not work, unfortunately. It outputed the same value in all rows as well.
I'm adding a print screen of an excel with my wanted output, hope it explains.
@Anonymous , the Above formula, should work for what you shown in excel
Team size = CALCULATE(COUNT(Table2[Manager]),FILTER(allselected(Table2),Table2[Manager]=max(Table2[Manager])))
or
Team size = CALCULATE(COUNT(Table2[Manager]),Allexcept(Table2,Table2[Manager]))
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
User | Count |
---|---|
110 | |
78 | |
66 | |
52 | |
51 |
User | Count |
---|---|
121 | |
116 | |
77 | |
64 | |
63 |