Dear all,
Is it possible to display the values of a parameter with multiple values Discrete and Ranges.
I made a formula field like this:
dim str as string
dim i as number
for i=1 to ubound({?STORE})
str=str + chr(10) +chr(13)+{?STORE}(i)
next i
str=right(str,len(str)-2)
formula = str
but is working only if the parameter value ?store has Multiple Values and Discrete.
if i choose Multiple Values Discrete and Ranges then the formula has error on the line:
str=str + chr(10) +chr(13)+{?STORE}(i)
"a string is required here"
I am using crystal 9
Many many thanks
Is it possible to display the values of a parameter with multiple values Discrete and Ranges.
I made a formula field like this:
dim str as string
dim i as number
for i=1 to ubound({?STORE})
str=str + chr(10) +chr(13)+{?STORE}(i)
next i
str=right(str,len(str)-2)
formula = str
but is working only if the parameter value ?store has Multiple Values and Discrete.
if i choose Multiple Values Discrete and Ranges then the formula has error on the line:
str=str + chr(10) +chr(13)+{?STORE}(i)
"a string is required here"
I am using crystal 9
Many many thanks