ctwilliams
Programmer
We have a "version" field in our database that contains values similar to the following:
V6.00.01.05
V6.00.03.00
V6.00.03.01
I have setup my record selection formula using the LIKE operator so that users can run the report for
V6.00.03.* and it will return V6.00.03.00, V6.00.03.01, etc.
I now need to allow users to enter multiple values, eg. V6.00.01.*, V6.00.03.*. I tried this but it didn't work:
{DB.Version} LIKE ["V6.00.01.*", "V6.00.03.*"]
So far my parameter is still a single-value parameter; I have not set it up to be a multiple because I didn't want to have to loop through an array.
V6.00.01.05
V6.00.03.00
V6.00.03.01
I have setup my record selection formula using the LIKE operator so that users can run the report for
V6.00.03.* and it will return V6.00.03.00, V6.00.03.01, etc.
I now need to allow users to enter multiple values, eg. V6.00.01.*, V6.00.03.*. I tried this but it didn't work:
{DB.Version} LIKE ["V6.00.01.*", "V6.00.03.*"]
So far my parameter is still a single-value parameter; I have not set it up to be a multiple because I didn't want to have to loop through an array.