Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
Hi,
I want to know if the Column1 has an "INTERN" word on it. As you can see on the 2nd column (INTERN WORD) all output are returning True because there's an intern word within a word. The 3rd column shows the correct output which returns true if there's a separate word "Intern".
Solved! Go to Solution.
Hi @Anonymous
plrase try
INTERN WORD =
VAR String =
SUBSTITUTE ( SUBSTITUTE ( 'Table'[Column1], "(", "" ), ")", "" )
VAR Items =
SUBSTITUTE ( String, " ", "|" )
VAR Length =
COALESCE ( PATHLENGTH ( Items ), 1 )
VAR T1 =
GENERATESERIES ( 1, Length, 1 )
VAR T2 =
SELECTCOLUMNS ( T1, "@Item", PATHITEM ( Items, [Value] ) )
RETURN
NOT ISEMPTY ( FILTER ( T2, [@Item] = "Intern" ) )
Hi @Anonymous
plrase try
INTERN WORD =
VAR String =
SUBSTITUTE ( SUBSTITUTE ( 'Table'[Column1], "(", "" ), ")", "" )
VAR Items =
SUBSTITUTE ( String, " ", "|" )
VAR Length =
COALESCE ( PATHLENGTH ( Items ), 1 )
VAR T1 =
GENERATESERIES ( 1, Length, 1 )
VAR T2 =
SELECTCOLUMNS ( T1, "@Item", PATHITEM ( Items, [Value] ) )
RETURN
NOT ISEMPTY ( FILTER ( T2, [@Item] = "Intern" ) )
This works. Thanks, Mate!
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
User | Count |
---|---|
20 | |
17 | |
17 | |
11 | |
7 |
User | Count |
---|---|
27 | |
27 | |
13 | |
12 | |
12 |