lauriesamh
Technical User
I'm using CR10 and have a parameter value (allows multiple values to be selected) to search by product code. I'm using the formula from the above thread to have the user select "" or 000 if they want to pull all product codes....
If
( IsNull({?Prod code(s)}) or Trim({?Prod code(s)}) = "" or {?Prod code(s)} = 'DefaultValue')
Then
True
Else
{Table.field} = {?Prod code(s)}
I keep getting the error "This array must be subscripted". I assume it is due to the multiple value option for the parameter. Since I don't know how many parameter values the user might select, any ideas to modifying the code?
If
( IsNull({?Prod code(s)}) or Trim({?Prod code(s)}) = "" or {?Prod code(s)} = 'DefaultValue')
Then
True
Else
{Table.field} = {?Prod code(s)}
I keep getting the error "This array must be subscripted". I assume it is due to the multiple value option for the parameter. Since I don't know how many parameter values the user might select, any ideas to modifying the code?