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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
Jonathan47
Helper I
Helper I

Containsstring not working how I want it to

Hi, 

I have a column of text of which have multiple text in some of the cells. I want to know how many times (in this case) inverter 02.1 appears in the column. The table is as shown below:

Jonathan47_1-1599192672404.png

My measure is:

Contains =
CONTAINSSTRING(SELECTEDVALUE(KIX[Name]), "Inverter 02.1")
Apologies if hard to see, but in the Name column, Inverter 02.1 appears several times, yet the measure returns false for that row. Does anyone know what the problem is?
Thanks

 

2 ACCEPTED SOLUTIONS
amitchandak
Super User
Super User

@Jonathan47 , try like, measure

Contains =
CONTAINSSTRING(Max(KIX[Name]), "Inverter 02.1")

 

column

Contains =
CONTAINSSTRING(KIX[Name]) "Inverter 02.1")

Join us as experts from around the world come together to shape the future of data and AI!
At the Microsoft Analytics Community Conference, global leaders and influential voices are stepping up to share their knowledge and help you master the latest in Microsoft Fabric, Copilot, and Purview.
️ November 12th-14th, 2024
 Online Event
Register Here

View solution in original post

Greg_Deckler
Super User
Super User

@Jonathan47 - If you want to know how many times that word/phrase appears in your text, do it this way:

 

Contains Column = IF(FIND("Inverter 02.1",[Name],,-1)>-1,1,0)

Contains Measure = IF(FIND("Inverter 02.1",MAX([Name]),,-1)>-1,1,0)

 



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
Power BI Cookbook Third Edition (Color)

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

3 REPLIES 3
Greg_Deckler
Super User
Super User

@Jonathan47 - If you want to know how many times that word/phrase appears in your text, do it this way:

 

Contains Column = IF(FIND("Inverter 02.1",[Name],,-1)>-1,1,0)

Contains Measure = IF(FIND("Inverter 02.1",MAX([Name]),,-1)>-1,1,0)

 



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
Power BI Cookbook Third Edition (Color)

DAX is easy, CALCULATE makes DAX hard...
amitchandak
Super User
Super User

@Jonathan47 , try like, measure

Contains =
CONTAINSSTRING(Max(KIX[Name]), "Inverter 02.1")

 

column

Contains =
CONTAINSSTRING(KIX[Name]) "Inverter 02.1")

Join us as experts from around the world come together to shape the future of data and AI!
At the Microsoft Analytics Community Conference, global leaders and influential voices are stepping up to share their knowledge and help you master the latest in Microsoft Fabric, Copilot, and Purview.
️ November 12th-14th, 2024
 Online Event
Register Here

Thanks! the second solution works for me.

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.