1
Good evening, everyone,
I am trying to make a Count with boolean values in power bi, using DAX formulas, but formulas do not return any value in the graphs.
Does anyone know how to tell the problem of the DAX formula below?
SLA Chamado (Atrasado) =
CALCULATE
(
COUNTAX
(
FILTER(Chamado;Chamado[SLAExpirado] = TRUE());
Chamado[SLAExpirado]
)
)