Forum Discussion
Remove in matrix table if word Fallback is present
- Anonymous5 years ago
Hi gilbertendaya ,
According to my understand , you want to remove the rows when the values of Intent Name contains “Fallback”,right?
You could use the CONTAINSSTRING() function like this:
countAll= IF ( CONTAINSSTRING ( SELECTEDVALUE ( Table1[IntentName] ), "Fallback" ), BLANK (), SUM ( Table1[Value] ) )My visualization looks like this:
Did I answer your question ? Please mark my reply as solution. Thank you very much.
If not, please upload some insensitive data samples and expected output.
Best Regards,
Eyelyn Qin
Hi gilbertendaya ,
According to my understand , you want to remove the rows when the values of Intent Name contains “Fallback”,right?
You could use the CONTAINSSTRING() function like this:
countAll=
IF (
CONTAINSSTRING ( SELECTEDVALUE ( Table1[IntentName] ), "Fallback" ),
BLANK (),
SUM ( Table1[Value] )
)My visualization looks like this:
Did I answer your question ? Please mark my reply as solution. Thank you very much.
If not, please upload some insensitive data samples and expected output.
Best Regards,
Eyelyn Qin