I am working on a report and have found myself stuck at this one spot for awhile now.
I am writing a report that recieves a multiple string parameters as input, and then needs to use a LIKE statement to see if there is records that meet the criteria. Just a few issues:
Here's what I have:
I have tried to use an IN statement as well. Having *'s is important, because the user will input a unique string.
Any ideas on how to make this work? I've seen some post on using a JOIN with MV parameters, but I'm not sure that's what I am looking for.
I am writing a report that recieves a multiple string parameters as input, and then needs to use a LIKE statement to see if there is records that meet the criteria. Just a few issues:
Here's what I have:
Code:
numbervar i = {#myparamcount};
While i < 0 DO
(
{DBTable.Field} LIKE "*"+{?MVParam}[i]+"*";
i = i - 1;
);
Any ideas on how to make this work? I've seen some post on using a JOIN with MV parameters, but I'm not sure that's what I am looking for.