Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TugboatEng on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

"Word Wrap" in a formula...

Status
Not open for further replies.

dgsbsme

Mechanical
Joined
Mar 9, 2005
Messages
39
Location
US
Is there a way to concatenate things (other cells; "text"; etc) in a formula, and force a wrap to next line at a particular point?

If I was simply entering text, I'd use [Alt][Enter] to do this, but in a formula, I can't find anything to do this.

I'm hoping someone knows of an extended ASCII character or something that will simulate a Carriage_Return/Line_Feed.

 
CHAR(10) is a line feed and forces a line feed when concatenated in between other text. For instance "abc"&CHAR(10)&"def" will wrap between c and d, but only if the cell is formatted to wrap text.
 
Many thanks jghrist... that's exactly what I needed.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top