ssrs-2008reporting-servicesreportingservices-2005

How to filter rows with null values in any of its columns in SSRS


I want to filter out the output without rows containing null values or blank columns. I am using SQL Server 2012 there is no option named 'Blank' as in SS2005 where I can filter the rows. I also tried following expression but it gives me error or not showing correct output

=IsNothing(Fields!ABC.Value)!= True 
=Fields!ABC.Value = ''

Please suggest the solution.


Solution

  • We should use the isNothing method in the Expression, change the Text to Boolean and then Value will be "True"

    for example:

    Expression 
    =IsNothing(Fields!TestA.Value)<>True
    (Expression type should be Boolean)
    Operator
    =
    Value
    =True