Munir Chaer
10/30/2024, 9:08 PMCeligo AI
10/30/2024, 9:08 PMAI 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:
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.
******Celigo AI
10/30/2024, 9:08 PMSlack 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
Celigo AI
10/30/2024, 9:08 PM