Values next to each other

I receive 3 values ​​from the item lists node and want to send them further. How can I make it so that the values ​​do not follow each other, but under each other. But not by taking each value from the array, but by passing everything at once.


It looks like your topic is missing some important information. Could you provide the following if applicable.

  • n8n version:
  • Database (default: SQLite):
  • n8n EXECUTIONS_PROCESS setting (default: own, main):
  • Running n8n via (Docker, npm, n8n cloud, desktop app):
  • Operating system:

Hi @KamaR, if you want to send your array in a specific format, you could consider using the join() method which lets you specify how the array elements are concatenated. So if you want your values separated by a new line, you could use an expression of {{ $json.locksmiths.join("\n") }} like so:

image

A quick heads-up on that node: n8n will remove newlines from most previews in order to display as much content as possible. These newlines still exist of course and will be sent.

2 Likes

@MutedJam ok, how should I arrange them next to each other?

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.