Help

The Community will be temporarily unavailable starting on Friday February 28. We’ll be back as soon as we can! To learn more, check out our Announcements blog post.

Is it possible to put the Enter in the formula?

Topic Labels: Formulas
Solved
Jump to Solution
1298 2
cancel
Showing results for 
Search instead for 
Did you mean: 
Vijay_chen
6 - Interface Innovator
6 - Interface Innovator

Is it possible to put the Enter key in the formula? I tried the Enter key code (^p, it is Enter key code in the Word) , but it didn’t work.

I want to implement the following display:
EU Community Legislation:
RED 2014/53/EU, RoHS Directive 2011/65/EU (10), RoHS Directive (EU) 2015/863;
Product Standards:
EN 301 489-1 V2.2.3, EN 301 489-17 V3.2.4, EN 300 328 V2.2.2, EN 301 893 V2.1.1, EN 62311:2008, EN 62368-1:2014/A11:2017;
Adapter Standars:
NA

image
image

1 Solution

Accepted Solutions
Justin_Barrett
18 - Pluto
18 - Pluto

The fairly-universal escape code for a newline is \n. Here’s a quick example:

"First Line\nSecond Line\nThird Line"

This produces:

First Line
Second Line
Third Line

Insert that newline escape code anywhere in a string where you want a line break.

See Solution in Thread

2 Replies 2
Justin_Barrett
18 - Pluto
18 - Pluto

The fairly-universal escape code for a newline is \n. Here’s a quick example:

"First Line\nSecond Line\nThird Line"

This produces:

First Line
Second Line
Third Line

Insert that newline escape code anywhere in a string where you want a line break.

Thank you very much :smiling_face_with_three_hearts: