Hey Hi,
I am looking for a function to search a particular word from a given column.
Currently, I am Using
Column_name = SWITCH(
Products | Output | |
Mino sai | Sai | (Which is fine) |
sai Kumar | Sai | (Which is fine) |
isa | Sai | (There is no Sai in the text but it has all the words separately) |
@Sai_Kumar , try like
Column_name = SWITCH(
True(), SEARCH("Sai", PowerBI_Fact[Product],,0)>0, "Sai",
PowerBI_Fact[Product]
)