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!

Help with formating formula for crosstab

Status
Not open for further replies.

WittyD

Technical User
Mar 15, 2005
20
US
Using cr 9.0 I am trying to format a column on a crosstab report. The column is based on a formula that displays two separate fields. Here is the formula:

"GSF: " & table.GSFTotal & " NSF: " & table.NSFTotal

All I want to be able to do is have a "return" in the middle of the formula so it displays on two lines. Is there a way to do this?
 
Try chr(13), like this

"GSF: " & table.GSFTotal & chr(13) & " NSF: " & table.NSFTotal
 
That's right I remember now. Thanks!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top