Multi value parameter values in to a string
'Code by Kiran Reddy'Converting multi value parameter values in to a string (reading an array in to a string)
'Open formula editor, select basic syntax from drop down list and add below code
dim str1 as string
dim inti as number
inti = 1
do until inti = (ubound({?YOUR_MULTI_PARAM})+1)
str1 = str1 + {?YOUR_MULTI_PARAM}(inti) & chr(13)
inti = inti + 1
loop
formula = str1