Text Formula for item saved search, if item subtyp...
# ask-stanley-ai
l
Text Formula for item saved search, if item subtype is null 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 subtype is null then it returns "good", else it returns "no", you can use a CASE statement in a Formula (Text) field. Here is an example:
Copy code
CASE WHEN {itemsubtype} IS NULL THEN 'good' ELSE 'no' END
This formula checks if the item subtype is null. If it is, it returns 'good'. If it's not null, it returns 'no'. ****** 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.811767638
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.808410645
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.806884766
Please provide your feedback on this answer.