Forum Discussion
DAX Function for COUNTIF and/or CALCULATE
- 10 years ago
Hi ksobota,
Based on your scenario, you can use the DAX below on your INDIVIDUAL table.
CountUser = CALCULATE(COUNTA(EMPLOYMENTS[Member_C]),FILTER(ALL(EMPLOYMENTS),EMPLOYMENTS[Member_C]=INDIVIDUAL[User_ID]))
Regards,
Charlie Liao
Hi.
I have similar situation, but i need distinct count result.
Table A:
1. Employee Name-column
Table B:
1. Country
Objective: Count distinct Employee Name by Germany and France- ONLY.
- Below is what I have done.
- Error: Too many arguments passed to DISTINCTCOUNT function.Maximum argument count for the function is 1.
Hopefully this time the forum will update (Attemp 6 to upload result)
Here is what you asked for:
CALCULATE(DISTINCTCOUNT('Table'[Employee]),FILTER('Table','Table'[Country]="Germany" || 'Table'[Country]="France"))
I dont think you initiall closed out your DistinctCount which tossed the original error.
If you need a single value for a KPI Card or Widget then you can also accomplish this through adding the KPI card to a report. Making the employee the vlaue and then adding country as filter to the KPI card and filter the visual to only Germany and France.
Regards.
- Anonymous6 years agoNot applicable
It worked.Thank you.