The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hello all,
I am just curious if there is a way to solve this. I have a text column and I am searching this column using an excel table which is working fine but say one of my keywords is "leg" its returning a true value if someone writes "College" in that free text column.
Is there a way to say in DAX I only want this string only if there is a space either side of it?
I hope this makes sense.
Thank you.
Solved! Go to Solution.
Here's an example of how you could write it:
Test Measure =
CALCULATE (
COUNTROWS ( Table1 ),
CONTAINSSTRING ( Table1[Column1], " leg" )
|| CONTAINSSTRING ( Table1[Column1], "leg " )
)
Proud to be a Super User!
Here's an example of how you could write it:
Test Measure =
CALCULATE (
COUNTROWS ( Table1 ),
CONTAINSSTRING ( Table1[Column1], " leg" )
|| CONTAINSSTRING ( Table1[Column1], "leg " )
)
Proud to be a Super User!
User | Count |
---|---|
77 | |
75 | |
36 | |
31 | |
29 |
User | Count |
---|---|
93 | |
81 | |
57 | |
48 | |
48 |