Forum Discussion
expression to exclude rows in ssrs report
- 3 years ago
M_nwadibia wrote:
I need the expression for rows 21-49 but my expression cint(Fields!Senate_District.Value)<20 AND Fields!Senate_District.Value >49 IS FAILING
This is because your expression is logically incorrect and will exclude all rows as now row can be both less than 20 and greater than 49. If you change your expression to use OR instead of AND it should work fine.
cint(Fields!Senate_District.Value)<20 OR cint(Fields!Senate_District.Value) >49
However it would be more efficient to do this filtering in the query for your dataset so that these rows do not even get sent back to Report Server for processing.
M_nwadibia wrote:
I need the expression for rows 21-49 but my expression cint(Fields!Senate_District.Value)<20 AND Fields!Senate_District.Value >49 IS FAILING
This is because your expression is logically incorrect and will exclude all rows as now row can be both less than 20 and greater than 49. If you change your expression to use OR instead of AND it should work fine.
cint(Fields!Senate_District.Value)<20 OR cint(Fields!Senate_District.Value) >49
However it would be more efficient to do this filtering in the query for your dataset so that these rows do not even get sent back to Report Server for processing.