Forum Discussion
How do I find exact text within a string?
- 5 years ago
Anonymous , Try CONTAINSSTRINGEXACT
CONTAINSSTRINGEXACT('ssc_db_001 ga_report'[Comment], "TU")
https://docs.microsoft.com/en-us/dax/containsstringexact-function-dax
Hi Anonymous ,
Try this
Column = CONTAINSSTRINGEXACT([Column1],"TU")|| CONTAINSSTRINGEXACT([Column1],"BU")
CONTAINSSTRINGEXACT returns True/False. How do you want to count?
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi Anonymous,
Sorry for my delayed response, I have not had access to the site.
Ideally I would like to count each incident where "TU" or "BU" appears in a comment/ text string, but only count once if one of them appears within a sentence. The Original formula and the one accepted as a solution- Counts 2 if TU & BU appear in the same text string as opposed to 1.
I hope I have coveyed my message well!
Kind regards,
Alex