A Crystal 9 report uses a string parameter containing 5 digits. When I run the report and enter two values in response to the parameter prompt, the report works. The record selection formula is:
not ({field name} in {?parameter})
When I run the report with a VB script (to which I have no access), the VB script reads the parameter from a text file and passes it to the report. When the parameter is 5 digits, the report works. I can't get the parameter to work for two values. I've tried "nnnnn,nnnnn" and "nnnnn nnnnn" and no quotes, etc. I don't know how to use the min, max and edit masks, if that would work. I've successfully hard-coded the record selection formula thus:
not ({field name} in "nnnnn,nnnnn")
and
not ({field name} in "nnnnn nnnnn")
Is there a way to do pass multiple values to the parameter?
not ({field name} in {?parameter})
When I run the report with a VB script (to which I have no access), the VB script reads the parameter from a text file and passes it to the report. When the parameter is 5 digits, the report works. I can't get the parameter to work for two values. I've tried "nnnnn,nnnnn" and "nnnnn nnnnn" and no quotes, etc. I don't know how to use the min, max and edit masks, if that would work. I've successfully hard-coded the record selection formula thus:
not ({field name} in "nnnnn,nnnnn")
and
not ({field name} in "nnnnn nnnnn")
Is there a way to do pass multiple values to the parameter?