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

Announcements
Qlik Connect 2026! Turn data into bold moves, April 13 -15: Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Total Count of null values

Hi,

I have a field called closedby, which usually has someones first name entered in there.  However if a call has not been closed this fields shows as NULL.  I want to use a text fields that gives me the full count of all rows that have a closedby showing as NULL.

How would I be able to achieve this?

1 Solution

Accepted Solutions
whiteline
Master II
Master II

If your NULL is just a string value 'NULL' (not empty value)

you can try somthing like =Count({$<closedby={"NULL"}>} closedby)

Create TextBox and enter this expression in a text field.

In case NULL mean empty values you can use =NullCount(closedby)

View solution in original post

2 Replies
whiteline
Master II
Master II

If your NULL is just a string value 'NULL' (not empty value)

you can try somthing like =Count({$<closedby={"NULL"}>} closedby)

Create TextBox and enter this expression in a text field.

In case NULL mean empty values you can use =NullCount(closedby)

Not applicable
Author

Thanks Whiteline,  They were empty values therefore I used your last expression and it worked perfectly.