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

后端 未结 3 919
无人共我
无人共我 2020-12-31 02:26

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 SS

3条回答
  •  暗喜
    暗喜 (楼主)
    2020-12-31 03:14

    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
    

提交回复
热议问题