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

后端 未结 3 886
无人共我
无人共我 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:18

    Edit the SQL query, so that it will not return NULL values in the column to group on, but let it return a dummy value; for example: ISNULL(columnA, 'dummy')

    In the column group definition add a filter: ColumnA <> 'dummy'.

提交回复
热议问题