Reputation: 8592
Based on the http://www.mssqltips.com/sqlservertip/2597/dataset-and-tablix-filtering-in-sql-server-reporting-services/, I created a dataset in a SSRS report which returns results like this:
I want to hide rows which contain only 0 using the dataset filtering feature, so that the tablix shows something like this:
5 178
399 141
0 750
12 6
0 26
How do I do that?
Upvotes: 2
Views: 2260
Reputation: 196
Try to add Filters to dataset..Following link will help you.. http://technet.microsoft.com/en-us/library/dd255287.aspx
Upvotes: 2
Reputation: 23809
Set the expression (click the fx button) in your filter to be:
=Fields!ColumnA.Value + Fields!ColumnB.Value
Operator: >
and Value: 0
Upvotes: 3