Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik and ServiceNow Partner to Bring Trusted Enterprise Context into AI-Powered Workflows. Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
SMT
Contributor
Contributor

Include null Values rows even after selection

Hello, when I select a filter from the dimension, the rows containing null values disappear. Instead, it should display both the rows with null values and the rows matching the selected values from the same column.

Labels (6)
3 Replies
avinashelite

For this you need to convert the "null" values as a select able string value in the filter by assigning the value in script , and then need to handle in the expression to include null values , else it will not show up .

Qlik by default always shows the values selected 

vighnesh_gawad
Partner - Creator II
Partner - Creator II

Hi @SMT , reason you cant select null values because those doesn't exit in data model.  So you need to assign values to it. Depending upon scenario it can be handle in multiple ways in Qlik sense. Using qlik load script or expression you can convert those null values in blank values which can be selected later by qlik sense filter. 

Check out below article on many ways you can handle null in Qlik sense. 

https://help.qlik.com/en-US/sense/November2025/Subsystems/Hub/Content/Sense_Hub/Scripting/null-value...

Regards, Vighnesh Gawad
Connect with me on LinkedIn | GitHub
Chanty4u
MVP
MVP

Hi try this in dimension.=Alt(DimensionField,'Null')

 

Or may be with below 

=If(IsNull(DimensionField),'Null',DimensionField)

 

If you want in script you can do this 

LOAD

If(IsNull(DimensionField),'Null',DimensionField) as DimensionField

FROM source;