Forum Discussion
cham
7 years agoPost Patron
0 values
Hi, I have a data set which includes answered and unanswered call details. If i select one user name it will show "0' because that user didnt answer any calls. So, I want to show a card showi...
AlB
7 years agoCommunity Champion
Measure for your card:
Measure =
VAR NumCalls =
SUM ( Table1[Answered Calls] )
RETURN
IF ( NumCalls = 0; "hasn't answered any calls"; NumCalls )