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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Carriage Return

Status
Not open for further replies.

JBats

Programmer
Aug 3, 2003
127
PH
I was creating a formula which will return a list of enumerated expression. How could I insert a carriage return in the formula.

e.g.

'1. Item 1' +
'2. Item 2' +
'3. Item 2'

When this expression be displayed, each item will appear on each line.



JBats
Good is not better if not than best...
 
Code:
'1. Item 1' + chr(13) + '2. Item 2' + chr(13) + '3. Item 2'

HTH

Gary Parker
MIS Data Analyst
Manchester, England
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top