I’m using Crystal Report XI and my data in the database are in CAPITALS. When I drive a parameter in “lower case” it does not return the data because it needs to be in capitals. My intention is that when I enter the parameter either in uppercase or lowercase likes 22jb or 22JB, I want it to return the data for me.
Hi,
That’s very odd. I’ve used multiple value parameters in a similar way before and not had a problem.
First thing, check that you are using ‘in’ in your record selection criteria instead of =.
Then consider the use of the Join function which will turn your returned parameters values into a separated list:
Join({?CABLE SEGMENT,},", ")
will give you a list of all your cable segments separated by “,”.
Worst comes to the worst you could try looping through the values brought back in the parameter and creating a list.
Cheers,
BatCat