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: 
eliegogotpe
Contributor
Contributor

Nullable Values

Hello, 

How to handle Nullable data in qlik ? I explain my self, in my data abse, there is a column that can  contain values as null. In my analysis, i want to count those empty fields . is that possible ? 

Thank you

3 Replies
Anil_Babu_Samineni
MVP
MVP

Try any one of them

Count({<Field = {"=Len(Field)=0"}>} Field)

Count({<Field = {"=Null()"}>} Field)

Count(If(Len(Field)=0, Field))

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
Kushal_Chawda
MVP
MVP

eliegogotpe
Contributor
Contributor
Author

Thank you for your reply. 

Should i put it in the Data Load part ? 

My script looks like this:
Load [ID]
Resident [ex] Group By [ID]


And then i add one of the formulas after ?