Forum Discussion
albertoderossi
3 years agoFrequent Visitor
Calculate measure - count values in same table considering differente categories
I have data from lost and incoming calls and I have to count the lost calls only for number tha don't have incoming calls. If a call from a number is lost, but afterwards is answered (Incoming), that...
- 3 years ago
please try
=
SUMX (
VALUES ( 'Table'[TESDE] ),
IF ( CALCULATE ( SELECTEDVALUE ( 'Table'[TIPO DE LLAMADA] ) ) = "Lost", 1 )
)
tamerj1
3 years agoCommunity Champion
please try
=
SUMX (
VALUES ( 'Table'[TESDE] ),
IF ( CALCULATE ( SELECTEDVALUE ( 'Table'[TIPO DE LLAMADA] ) ) = "Lost", 1 )
)
- albertoderossi3 years agoFrequent Visitor
That's the one! so simple, Thanks