Please help.
I use ASP to pass parameters to my reports and they all work OK.
But one thing is not working perfectly :
Multiple params.
I have a ParameterField in my report which will contains all values accepted for the part number.
In ASP, i pass for exemple : '101','102','312' to the parameter field "PossibleProducts"
and in my report i added a record selection formula like
partNum in {?PossibleProducts}
It works, except for that exemple.
if i pass 'F-101','BO-36'
it will return F-101 and 101 parts.
Because the "in" string operator used check the string for occurence and not the complete word.
Is there a way to get only F-101 in my exemple except of both possible.
How? Do i need to use a multiple parameter field except of just a string field?
I'm using Crystal Reports Professional 8.
I use ASP to pass parameters to my reports and they all work OK.
But one thing is not working perfectly :
Multiple params.
I have a ParameterField in my report which will contains all values accepted for the part number.
In ASP, i pass for exemple : '101','102','312' to the parameter field "PossibleProducts"
and in my report i added a record selection formula like
partNum in {?PossibleProducts}
It works, except for that exemple.
if i pass 'F-101','BO-36'
it will return F-101 and 101 parts.
Because the "in" string operator used check the string for occurence and not the complete word.
Is there a way to get only F-101 in my exemple except of both possible.
How? Do i need to use a multiple parameter field except of just a string field?
I'm using Crystal Reports Professional 8.