Jun 20, 2001 #1 Muttley MIS Joined Nov 22, 2000 Messages 50 Location US Hi How do I insert a linefeed/carriage return character in a textbox on a report? I've tried using the following syntax, which doesn't seem to work: = [address1] & Chr(13) & [address2] also: = [address1] & vbCrLf & [address2] Any tips? TIA Muttley
Hi How do I insert a linefeed/carriage return character in a textbox on a report? I've tried using the following syntax, which doesn't seem to work: = [address1] & Chr(13) & [address2] also: = [address1] & vbCrLf & [address2] Any tips? TIA Muttley
Jun 20, 2001 1 #2 JoeMiller IS-IT--Management Joined Apr 27, 2001 Messages 1,634 Location US Try this: =[Address1] & Chr(13) & Chr(10) & [Address2] HTH Joe Miller joe.miller@flotech.net Upvote 0 Downvote
Jun 21, 2001 Thread starter #3 Muttley MIS Joined Nov 22, 2000 Messages 50 Location US Joe Thanks a million, that worked great! Muttley Upvote 0 Downvote