Forum Discussion
Create grouping based on a keyword
- 9 years ago
maybe something like this could work?
group=
SWITCH (
TRUE (),
AND ( SEARCH ( "Disc", Fieldname ) = 1, SEARCH ( "Discovery", Fieldname ) = 0 ), "Disc",
"NA"
) - 9 years ago
Hi aalfa,
You could refer to below formula to create a calculated column:
Grouping = IF(FIND("DISC",'Create grouping'[Column1],1,0)>0,"DISC","N/A")
As FIND function is case sensitive, it will distinguish "DISC" and "Disc", the record containing "Discovery" will be excluded in result.
Regards,
Yuliana Gu
Hi aalfa,
You could refer to below formula to create a calculated column:
Grouping = IF(FIND("DISC",'Create grouping'[Column1],1,0)>0,"DISC","N/A")
As FIND function is case sensitive, it will distinguish "DISC" and "Disc", the record containing "Discovery" will be excluded in result.
Regards,
Yuliana Gu