Give me a formula to use in a saved search to see ...
# ask-stanley-ai
m
Give me a formula to use in a saved search to see if any transaction is missing a vendor name
c
AI generated answer (using internal Slack threads):
To create a saved search to see if any transaction is missing a vendor name, you can use a formula field in the criteria of your saved search. Here is the formula you can use:
Copy code
CASE WHEN {vendor.name} IS NULL THEN 1 ELSE 0 END
In the criteria of your saved search, add a new line with the following settings: - Field: Formula (Numeric) - Operator: equal to - Value: 1 - Formula:
CASE WHEN {vendor.name} IS NULL THEN 1 ELSE 0 END
This formula will return 1 if the vendor name is missing (NULL), and 0 if a vendor name is present. By setting the operator to 'equal to' and the value to 1, the search will only return transactions where the vendor name is missing. ****** 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.855039537
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.84586972
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.842210531
Please provide your feedback on this answer.