Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
L-P
Frequent Visitor

Counta with conditions

Morning Guys, hope its all well!

I have a query where I need a Count of employee role id's. There is a column with the role id and another one with the role names.

I need to be able to do the count based on, for example.

 

When the measure Counts the total of role ids associated to a particular employee name 

 

Column Role Names 

 

Group Leader 

 

Member 

 

Business unit Leader

 

In some cases Business unit leader and group leader should considered as the same.

 

I'll appreciate if anyone has some feedback.

Have a great day 👍

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

1 ACCEPTED SOLUTION
v-cazheng-msft
Community Support
Community Support

Hi @L-P,

 

If you would like to count role id for different role names, you may try this Measure.

Count on roles names = CALCULATE(COUNT('Table'[role id]),ALLEXCEPT('Table','Table'[role names]))

 

If you would like to count role id for one specific role name, you can try this Measure and make some changes per your needs.

Count for one role name = CALCULATE(COUNT('Table'[role id]),FILTER( ALL('Table'),'Table'[role names]="lisa"))

Sample data:

vcazhengmsft_0-1654752783627.png

 

The result:

vcazhengmsft_1-1654752783629.png

 

Also, attached the pbix file.

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let me know. Thanks a lot!

 

Best Regards,

Community Support Team _ Caiyun

View solution in original post

3 REPLIES 3
v-cazheng-msft
Community Support
Community Support

Hi @L-P,

 

If you would like to count role id for different role names, you may try this Measure.

Count on roles names = CALCULATE(COUNT('Table'[role id]),ALLEXCEPT('Table','Table'[role names]))

 

If you would like to count role id for one specific role name, you can try this Measure and make some changes per your needs.

Count for one role name = CALCULATE(COUNT('Table'[role id]),FILTER( ALL('Table'),'Table'[role names]="lisa"))

Sample data:

vcazhengmsft_0-1654752783627.png

 

The result:

vcazhengmsft_1-1654752783629.png

 

Also, attached the pbix file.

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let me know. Thanks a lot!

 

Best Regards,

Community Support Team _ Caiyun

L-P
Frequent Visitor

Thanks, @Greg,

So far no luck!

 

 
Greg_Deckler
Super User
Super User

@L-P You can use the pattern COUNTAX(FILTER(...),...) or CALCULATE(COUNTA(...),...)

(1) CO-CU Excel to DAX Translation - Microsoft Power BI Community


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors