Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register 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.
@Anonymous , try like, measure
Contains =
CONTAINSSTRING(Max(KIX[Name]), "Inverter 02.1")
column
Contains =
CONTAINSSTRING(KIX[Name]) "Inverter 02.1")
@Anonymous - 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)
@Anonymous - 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)
@Anonymous , 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!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
118 | |
84 | |
48 | |
38 | |
28 |
User | Count |
---|---|
185 | |
73 | |
72 | |
48 | |
42 |