Forum Discussion
Anonymous
3 years agoNot applicable
Measure with IF( CONTAINSSTRING
Hi ๐ Help me please I want to create Measure like IF(CONTAINSSTRING( table[text_col] ,"ABC"), TRUE(), FALSE()) This formula as is doesn't work. What is wrong?
- Anonymous3 years ago
In meantime I found solution
SUMX( FILTER( table, CONTAINSSTRING(table'[string_col], "ABC")), 1)
It come from this page
Jija
2 years agoNew Member
You may create a column!
CONTAINSSTRING( table[text_col] ,"ABC")
or
CONTAINSSTRINGEXACT( table[text_col] ,"ABC") (case sensitive)
You may check Youtube: ColorfulAnalysis
CONTAINSSTRING || CONTAINSSTRINGEXACT