Jun 20, 2001 #1 Muttley MIS Nov 22, 2000 50 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 Apr 27, 2001 1,634 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 Nov 22, 2000 50 US Joe Thanks a million, that worked great! Muttley Upvote 0 Downvote