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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
tilakbhawsar094
Contributor II
Contributor II

Qlik Sense App, Null Values issue

Hi All,

I want to select null values in Table but as you all know, there is no such option in qliksense. So, I performed below calculation:

1. Replace it with some value in back end:  If(isnull([Qlik Column Name]),'Empty', [Qlik Column Name]) as [Qlik Column Name];

2. Same above Calculation in front end straight table.

Both the above calculations did not work. It is not even identifying as null.

I have attached a screenshot for more information. Can anyone please help ASAP. 

Labels (2)
5 Replies
AdiPai
Creator II
Creator II

Try this 

If(len([Qlik Column Name]) = 0 ,'Empty', [Qlik Column Name]) as [Qlik Column Name];

 

 

agigliotti
MVP
MVP

maybe this:

=If( len(trim([Qlik Column Name])) = 0 or isnull([Qlik Column Name]), 'Empty', [Qlik Column Name] ) as [Qlik Column Name];

The Power of shining a light on the dark side of your data.
Follow me on my LinkedIn | Know Gamma Informatica at gammainformatica.it
tilakbhawsar094
Contributor II
Contributor II
Author

It is not even calculating length of that null value. I already tried.

AdiPai
Creator II
Creator II

can you share the file?

avkeep01
Partner - Specialist
Partner - Specialist

Hi @tilakbhawsar094 ,

Just to be sure: there is only on table in where the fields are coming from or is the data coming from multiple tables in your data model?