CONTAINSSTRING is a DAX function that returns TRUE if one text string contains another text string, and it is not case-sensitive.
Syntax
CONTAINSSTRING(
WithinText,
FindText
)
| Argument | Properties | Description |
|---|---|---|
| WithinText | The text in which you want to search for FindText. | |
| FindText | The text you want to find. You can use the ? and * wildcard characters; use ~? and ~* to find the ? and * characters. |