Mike Casey
04/18/2025, 4:22 PMCeligo AI
04/18/2025, 4:22 PMAI generated answer (using internal Slack threads):Based on the conversations, you can use a formula in a saved search to check if a text field is contained in a list of values. Here's an example of how you can do it:
CASE WHEN {yourfield} IN ('111-222', '222-333') THEN 'Yes' ELSE 'No' END
In this formula, replace {yourfield} with the actual field you want to check. The formula will return 'Yes' if the value of {yourfield} is either '111-222' or '222-333'. Otherwise, it will return 'No'.
If you want to check if the value of a field is contained in a multiple select field, you can use the INSTR function. Here's an example:
CASE WHEN INSTR({multi-select field}, {yourfield}, 1) > 0 THEN 1 ELSE 0 END
In this formula, replace {multi-select field} with the actual multiple select field and {yourfield} with the actual field you want to check. The formula will return 1 if the value of {yourfield} is contained in {multi-select field}. Otherwise, it will return 0.
******
Disclaimer:
This response was generated by an artificial intelligence assistant based on previous conversations from multiple Slack channels, and may contain inaccuracies or mistakes.
******Celigo AI
04/18/2025, 4:22 PMSlack thread 1: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.853262722
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.839910507
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.836954
Celigo AI
04/18/2025, 4:22 PM