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

creating a blank line

Status
Not open for further replies.

ililal

Programmer
Dec 4, 2006
15
US
How do you add a blank line in a formula?

for example:
fullName := fullName +"BLANK LINE"+ trim({Command.LASTNAME})+ ", " + trim({Command.FIRSTNAME});
 
Try:

fullName := fullName +chr(13)+ trim({Command.LASTNAME})+ ", " + trim({Command.FIRSTNAME});

-k
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top