Forum Discussion
franorio
Helper III
9 years agoIF Function 2 conditions, count status
Hello everybody, I have the following question. I have 3 columns: Manager; Scope & Status. Column ¨Manager¨ shows if a person has an employee under his structure... if he has someone, it shows an ...
- 9 years ago
But in the mean time try this : but add your table name where I have 'Table2'
Measure = CALCULATE( COUNTROWS('Table2') , FILTER( 'Table2', 'Table2'[Status]="Completed" && 'Table2'[Scope]="Yes" && NOT ISBLANK('Table2'[Manager]) ) )
Phil_Seamark
Microsoft Employee
9 years agoCan you please post a small sample of your data?
- Phil_Seamark9 years ago
Microsoft Employee
But in the mean time try this : but add your table name where I have 'Table2'
Measure = CALCULATE( COUNTROWS('Table2') , FILTER( 'Table2', 'Table2'[Status]="Completed" && 'Table2'[Scope]="Yes" && NOT ISBLANK('Table2'[Manager]) ) )- franorio9 years ago
Helper III
Thanks a lot Phil!! worked perfectly!!