Is it possible to pass a runtime parameter with a wildcard?
For example, 'inCountry N*'
Thanks again for the help!
Werner
Is it possible to pass a runtime parameter with a wildcard?
For example, 'inCountry N*'
Thanks again for the help!
Werner
Yes,
easiest way of doing that would be to use SQL 'LIKE' condition in the query. If you wish to use * as a wildcard then just change * to % inside the report (can create a function for that to make it usable across reports).
Alternatively match the data so that either full match or partial match would be accepted. It really depends how you wish it to behave.
--
myDBR Team
And again, thanks very much!
You must log in to post.