Give me a numeric formula that I can use in a tran...
# ask-stanley-ai
m
Give me a numeric formula that I can use in a transactions saved search to filter down based on the intercoelimination field being T.
c
AI generated answer (using internal Slack threads):
To filter down based on the
intercoelimination
field being
T
in a transactions saved search, you can use a formula (numeric) in the criteria section of the saved search. The formula would look like this:
Copy code
CASE WHEN {intercoelimination} = 'T' THEN 1 ELSE 0 END
This formula will return 1 when the
intercoelimination
field is
T
and 0 otherwise. You can then filter on this formula field to only include records where the formula is 1, effectively filtering down to only those transactions where
intercoelimination
is
T
. ****** 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.835042655
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.827533722
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.827195644
Please provide your feedback on this answer.