Text Formula for item saved search, if item type i...
# ask-stanley-ai
l
Text Formula for item saved search, if item type is kit then “good” else “no”
c
AI generated answer (using internal Slack threads):
To create a text formula for an item saved search where if the item type is a kit then it returns "good", else it returns "no", you can use the following formula:
Copy code
CASE WHEN {type} = 'Kit/Package' THEN 'good' ELSE 'no' END
This formula uses the
CASE
statement to check the condition
{type} = 'Kit/Package'
. If the condition is true, it returns 'good'. If the condition is false, it returns 'no'. You can add this formula in the Formula (Text) field of your saved search criteria. ****** Disclaimer: This response was generated by an artificial intelligence assistant based on previous conversations from multiple Slack channels, and may contain inaccuracies or mistakes. ******
Slack thread 1: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.831909239
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.83136
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.828491271
Please provide your feedback on this answer.