Newline using flow script

Hi Gurus,

I have a small query for script element in flow studio.

IF ConStatus = ‘CREATED’ THEN

   SET NEXTSTEP = 'Meeting created';  
   set NEXTSTEP = NEXTSTEP & 'Then agendas need to be attached';

Now I’ll show NEXTSTEP in user prompt but want to put a new line after ‘Meeting created’ line then to show next line.

How to achieve this?

BR,
Bhaskar

Hi,

i think just concatenating chr(10) would do it

If it doesnt work for you try adding chr(10) & chr(13)

Hope this helps!

B R
Ivan

1 Like

Hi Ivan,

Thnaks for your comments .
I did it with using & ‘|’ for newline

Br,
Bhaskar