Google Sheet write cell with \n

Hi Folks,

I want to write a cell with a value
String1 \N
String2
So in the Google sheet cell a simular like ALT+ENTER? is this possible? or should i use another command
Currently l use the spreadsheet write cell command.

Thx

It is not clear what you want to achieve.

Can you show the output you want with a screenshot of a spreadsheet ?

If I understand correctly, this is how you might do it with google apps script.

Not sure if you can do the same with the Spreadsheet component, but you can try adding a \n

1 Like

Just tested, this works

image

image

1 Like

Just be careful about building up your text with text JOINs.
There is a bug that prevents the Sheet component from reading those.

1 Like

Hi ABG, this is the problem i want to Join 2 test bloxes

Do the join in a variable, then add the variable to the data socket

image

1 Like

Hi Tim,

image
I get an error code 400 Bad request.

Sorry, the workaround is to set the join to a label, then use the label text

image

1 Like

Search for textify on this board.
(Hallelujah)

1 Like

Works fine THX tim!

Note that the bug related to using joined strings directly in the WriteCell block should be fixed on ai2-test with the corresponding companion.

1 Like