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...
cham
7 years agoPost Patron
Hi,
This is the sample data set. If I select user name as "C" in my filter slicer then i want to show a card that showing "he is not answered any calls"
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 )- cham7 years agoPost Patron
Thank You so much