So, I'm trying to count the active tasks a person has on a data verse table, I'm using this expression
CountIf(tm_Tareas, Asignado.Nombre = ThisItem.Nombre && Completado = false)
Where Asignado = The assigned person to the task
Nombre = Their Name
Completado = Yes/No if the task is completed
The first part of the expression seems to work as intended, it returns the total of rows under that name, but the second part seems to not work, and I'm not sure what I'm doing wrong.