0

In my ssrs report, I have a column "Total" and it contains integer values. Now I want to remove the entire row from report, where value of column Total = -1.

A.G
  • 11
  • 2

1 Answers1

0

If you can't filter the data from the query, you can do so either via the tablix properties or the dataset properties. To add a filter to your dataset, right click the Dataset name and select "Dataset properties". Similarly, you can modify the tablix properties by right clicking the small square in the corner of your tablix and selecting "Tablix properties". Then select "Filters" and add your desired filter. See image:enter image description here

C Bell
  • 347
  • 1
  • 8
  • While this is correct, it's not very helpful because you didn't explain how to do this. If he already knew how to filter data in the dataset properties he probably wouldn't have asked this question. – StevenWhite May 17 '17 at 16:50