On a transaction saved search can you write a form...
# ask-stanley-ai
m
On a transaction saved search can you write a formula that takes all "applying transaction" and lists them on a single column separated by a ,
c
AI generated answer (using internal Slack threads):
Based on the conversations, it seems that you cannot directly write a formula in a transaction saved search that takes all "applying transaction" and lists them on a single column separated by a comma. However, you can use a workaround by using a summary saved search and using the LISTAGG or NS_CONCAT functions to combine multiple rows into one. These functions are used to concatenate the values of the "applying transaction" field from multiple rows into a single string with each value separated by a comma. Here is an example of how you might use LISTAGG:
Copy code
SQL
LISTAGG({applyingtransaction}, ',') WITHIN GROUP (ORDER BY {applyingtransaction})
And here is an example of how you might use NS_CONCAT:
Copy code
SQL
NS_CONCAT({applyingtransaction})
Please note that these functions are used in the context of a SQL formula in a saved search, and the actual syntax may vary depending on the specific requirements of your saved search. ****** 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.853169501
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.847685635
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.847633541
Please provide your feedback on this answer.