Oct 26, 2012 #1 937989 Programmer Joined Oct 4, 2012 Messages 4 Location US Hello everyone, I am multiple values in one parateer field. I want these values to be displayed in new lines in report. for example- parameter- Parameter1 parameter2 parameter3 etc. How can I do this ?
Hello everyone, I am multiple values in one parateer field. I want these values to be displayed in new lines in report. for example- parameter- Parameter1 parameter2 parameter3 etc. How can I do this ?
Oct 26, 2012 #2 briangriffin Programmer Joined Nov 6, 2008 Messages 878 Location US join({?YourParameter},chr(13)) chr(13) is the ASCII code for carriage return. Make sure you allow the field to grow vertically. Upvote 0 Downvote
join({?YourParameter},chr(13)) chr(13) is the ASCII code for carriage return. Make sure you allow the field to grow vertically.