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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
PetrK
Helper II
Helper II

Measure with IF( CONTAINSSTRING

Hi 😀
Help me please
I want to create Measure like

IF(CONTAINSSTRING( table[text_col] ,"ABC"), TRUE(), FALSE())

This formula as is doesn't work. What is wrong?

1 ACCEPTED SOLUTION
PetrK
Helper II
Helper II

In meantime I found solution

 
SUMX(
       FILTER(
            table,
            CONTAINSSTRING(table'[string_col], "ABC")),
        1)


It come from this page 

View solution in original post

6 REPLIES 6
Jija
New Member

You may create a column! 

CONTAINSSTRING( table[text_col] ,"ABC")

or

CONTAINSSTRINGEXACT( table[text_col] ,"ABC") (case sensitive)

 

You may check Youtube: ColorfulAnalysis 

CONTAINSSTRING || CONTAINSSTRINGEXACT

 

PetrK
Helper II
Helper II

In meantime I found solution

 
SUMX(
       FILTER(
            table,
            CONTAINSSTRING(table'[string_col], "ABC")),
        1)


It come from this page 

JorgePinho
Solution Sage
Solution Sage

What error are you getting? Are you creating a measure or a column?

Hi, I want to create Measure. this formula works in Column but in Measure it return error

 

"A single value for column 'table'[text_col] cannot be determined. This can happen when a measure formula refers to a column that contains many values without specifying an aggregation such as min, max, count, or sum to get a single result."

 

There is missing some Iterator, but I don't know which one a where it must be placed in code.

 

Since you don't want a calculated column, it is missing an aggregator. I don't know what you pretend to do with the measure. If you're idea is to use it in a table visual then you can do something like this:

IF(CONTAINSSTRING( MAX(table[text_col]) ,"ABC"), TRUE(), FALSE())

 

it doesn't work, it return False for all rows

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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