I have a CR 8.5 report that accepts a string as a parameter.
The string will be a comma seperated list of numbers (1,3,5,1,46,etc).
I need to use these numbers in an 'IN' selection.
{numeric_field_name} in {?CSVStringParameter}
I have tried something like:
{numeric_field_name} in makearray(tonumber(join{?CSVStringParameter},",")))
but it is not correct.
Split and Join do not seem to be the right way to do this.
Any help is appreciated.
Thanks.
The string will be a comma seperated list of numbers (1,3,5,1,46,etc).
I need to use these numbers in an 'IN' selection.
{numeric_field_name} in {?CSVStringParameter}
I have tried something like:
{numeric_field_name} in makearray(tonumber(join{?CSVStringParameter},",")))
but it is not correct.
Split and Join do not seem to be the right way to do this.
Any help is appreciated.
Thanks.