> I'm using Report Builder to display the following information. > How would I display the following results on three separate lines. > > This: > FORM.address & > FORM.city & > FORM.phone > > Is currently reading like this: > 1212 North StreetChicago232-234-3455 > > I need it to look like this: > 1212 North Street > Chicago > 232-234-3455 > > Anyone have any ideas on how to get the line breaks in there?
Have you tried appending a carriage return/line feed to the end of each line? like this: FORM.address & CHR(13) & CHR(10) & FORM.city & CHR(13) & CHR(10) & FORM.phone -- Eddie Awad. http://awads.net/ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Discover CFTicket - The leading ColdFusion Help Desk and Trouble Ticket application http://www.houseoffusion.com/banners/view.cfm?bannerid=48 Message: http://www.houseoffusion.com/lists.cfm/link=i:4:212361 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4 Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4 Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

