Forum Discussion
Anonymous
7 years agoNot applicable
Text Search
Good afternoon
Does anyone know how I do (what formula I use) to search the fields that have a certain fragment of a text?
For example, I need to know which rows in the "Description" field of a tab...
- 7 years ago
Anonymous -
This should do the trick for you:
Column = SWITCH ( TRUE (), FIND ( "ABC", Table1[Description], 1, 0 ) = 1, "YES", "NO" )
ChrisMendoza
7 years agoResident Rockstar
Anonymous -
This should do the trick for you:
Column =
SWITCH (
TRUE (),
FIND (
"ABC",
Table1[Description],
1,
0
) = 1, "YES",
"NO"
)