What's the syntax for a saved search formula using...
# ask-stanley-ai
c
What's the syntax for a saved search formula using CONCAT when you need to add a space between two fields?
c
AI generated answer (using internal Slack threads):
The syntax for a saved search formula using CONCAT when you need to add a space between two fields in NetSuite is as follows: You need to use the double pipe
||
operator to concatenate fields or text. If you want to add a space between two fields, you can do so by including a space within single quotes
' '
. Here is an example:
Copy code
{field1} || ' ' || {field2}
In this example,
field1
and
field2
are the internal IDs of the fields you want to concatenate. The
||
operator is used to concatenate the fields, and
' '
(a space within single quotes) is used to add a space between the fields. ****** 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.854370177
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.842956543
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.84210211
Please provide your feedback on this answer.