Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Try your skills in the Power BI Dataviz World Championship! Round one ends June 26. Join now

Reply
Anonymous
Not applicable

Text Search

Good afternoon

Does anyone know how I do (what formula I use) to search the fields that have a certain fragment of a text?

For example, I need to know which rows in the "Description" field of a table have the "ABC" snippet.

DESCRIPTION TEST
ABCX Yes
ABDF No
AGFA No
AFGD No

If I use the IF formula it does not work because it would only search the field that has only the ABC section. But my goal is to know the lines that have this fragment, but not necessarily be ONLY it.
1 ACCEPTED SOLUTION
ChrisMendoza
Resident Rockstar
Resident Rockstar

@Anonymous -

 

This should do the trick for you:

Column =
SWITCH (
    TRUE (),
    FIND (
        "ABC",
        Table1[Description],
        1,
        0
    ) = 1, "YES",
    "NO"
)

2.PNG

 

 






Did I answer your question? Mark my post as a solution!
Did my answers help arrive at a solution? Give it a kudos by clicking the Thumbs Up!

Proud to be a Super User!



View solution in original post

1 REPLY 1
ChrisMendoza
Resident Rockstar
Resident Rockstar

@Anonymous -

 

This should do the trick for you:

Column =
SWITCH (
    TRUE (),
    FIND (
        "ABC",
        Table1[Description],
        1,
        0
    ) = 1, "YES",
    "NO"
)

2.PNG

 

 






Did I answer your question? Mark my post as a solution!
Did my answers help arrive at a solution? Give it a kudos by clicking the Thumbs Up!

Proud to be a Super User!



Helpful resources

Announcements
Fabric Data Days is here Carousel

Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.