Don't miss your chance to take exam DP-600 or DP-700 on us!
Request nowLearn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hi Team,
I would like to ask for your assistance on how to filter out the results if the column contains the word "Fallback" in matrix table.
see below
@amitchandak @ImkeF @Tahreem24
IntentName is the column and CountAllIntent is a measure.
Thank you.
Solved! Go to Solution.
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
You can also try using CONTAINS dax:
@gilbertendaya , Try a measure like
Measure =
countx(countrows(Table), filter(Table,search("Fallback",Table[IntentName],,0)>0))
or add filter to your existing measures
@gilbertendaya So maybe:
Measure =
VAR __Calc = [CountAllIntent]
RETURN
IF(SEARCH("Fallback",MAX([IntentName),,0)>0,BLANK(),__Calc)
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 53 | |
| 45 | |
| 38 | |
| 16 | |
| 14 |
| User | Count |
|---|---|
| 82 | |
| 69 | |
| 39 | |
| 29 | |
| 27 |