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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
richardlima
Frequent Visitor

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

@richardlima -

 

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

@richardlima -

 

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
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors