Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Print parameter With multiple values URGENT

Status
Not open for further replies.

swreng

MIS
Jun 22, 2006
90
GR
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

 
Thank you IdoMillet your post was very userful
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top