March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe 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
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:
My measure is:
Solved! Go to Solution.
@Jonathan47 , try like, measure
Contains =
CONTAINSSTRING(Max(KIX[Name]), "Inverter 02.1")
column
Contains =
CONTAINSSTRING(KIX[Name]) "Inverter 02.1")
@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)
@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)
@Jonathan47 , try like, measure
Contains =
CONTAINSSTRING(Max(KIX[Name]), "Inverter 02.1")
column
Contains =
CONTAINSSTRING(KIX[Name]) "Inverter 02.1")
Thanks! the second solution works for me.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
User | Count |
---|---|
111 | |
91 | |
90 | |
76 | |
45 |
User | Count |
---|---|
199 | |
163 | |
94 | |
80 | |
65 |