Forum Discussion
cham
Post Patron
7 years ago0 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
Community Champion
7 years agoMeasure for your card:
Measure =
VAR NumCalls =
SUM ( Table1[Answered Calls] )
RETURN
IF ( NumCalls = 0; "hasn't answered any calls"; NumCalls )