Hello,
I've got an unfiltered dataset to deal with so as to generate a report (SQL Server 2005, btw).
Let's say I've got a Name column, and I'd want to ad a parameter to my report, so as to select only the names containing some characters.
Does one know how to deal with these filters?
I tried with no luck this:
=Fields!Name.Value Like =Parameters!FilterName.Value
=Fields!Name.Value = = "%" + Parameters!FilterName.Value + "%"
Id like to be able to get the names 'foo' and 'foobar' if I give the parameter 'oo'
Edit: I know the filtering should be done on the SQL server side, but I don't control the dataset I'm given (a webservice gives it with a no-parameters method), so I have to filter on the report side.