Question : MSSQL Reporting Services - Filtering data in a table

All;

I have an issue in tyring to place a filter on a table in my report.

I have one dataset that i want to filter and display serveral times in one report.  The query is complicated and somewhat slow(yes i am working on optimizing it), so i want to pull it once, and then use it in 4 different tables in my report.
The first table, will be unfiltered, the others will be filtered by one of the fields in my dataset that returns an int datatype, none of the values are null, I checked.

I tried following the instructions here:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/RShowto/htm/hrs_designer_v1_3diq.asp,
but it doesn't work.

My filter expression is =Fields!myField.Value>=80.

When i preview the report, it returns no build errors or warnings, but i get  this dialog:
------------------------------------------------------------------------------------------------
Processing Errors
An error has occurred during the report processing.
The processing of filter expression for the table 'table1' cannot be
performed.  The comparison failed. Please check the data type returned by the
filter expression.
-----------------------------------------------------------------------------------------------
What am i doing wrong???
This is driving me nuts...

Thank you;

Answer : MSSQL Reporting Services - Filtering data in a table

That's odd.  I tried setting a report very similar to yours and mine filters ok.  I even used the convert function in my SQL statement as well.

Filter I used:
Expression: =Fields!myField.Value
Operator: >=
Value: =80

Maybe you are getting a Null value for Fields!myField.Value in some of your records?  This could then be the mismatch that it's going on about.  You could find this out by adding a criteria against the field in the dataset to only select records where Fields!myField.Value is null ?
Random Solutions  
 
programming4us programming4us