Hi,
I'd like to be able to type multiple parts of names into a prompt and return records where the field contains any parts of those names. For example, if I type "Jenny;Sydney" into the prompt, I would like the report to return both "Jenny Chen" and "Sydney Smith".
Currently I have the prompt and report working if only 1 name or part of a name is entered into the prompt. However, if I select more than 1 value like "Jenny;Sydney Smith", the prompt passes the string to the presentation variable as "Jenny,Sydney Smith". Is there a way to evaluate each value separately, so it will evaluate "Jenny" and then "Sydney Smith" ?
My current filter logic:
case when "Approver"."Approver Name" like '%' || upper('@{reviewerAssignedTo}['@']{%}') || '%' OR upper('@{reviewerAssignedTo}['@']{%}') LIKE '%' || "Approver"."Approver Name" || '%' then 1 else 0 end
reviewerAssignedTo is the presentation variable set by the prompt.