Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Count empty space in a column

Good Morning!

How do I count the "ISSUED" Status, when in the Delayed column has the field blank. In this case the count is "6".

8 Replies
tajmohamed30
Creator III
Creator III

Hi,

Have you tried this,

=count(IsNull(Delayed)) or

=NullCount(Delayed)

Thanks

Taj Mohamed

felipedl
Partner - Specialist III
Partner - Specialist III

You could use set analysis to count the ones that don't have value.

Like this:

count({<Delayed={""}>}Status)


Regards,

Felipe.

Not applicable
Author

Good morning!

Did not work. I need you to count nulls in the Delayed column, only when the Status column has the ISSUED option

Status

Delayed

ISSUED

ISSUED

SAFETY

ISSUED

INPRG

ISSUED

ISSUED

CUSTOMER

ISSUED

ISSUED

MATERIAL

ISSUED

MATERIAL

ISSUED

MATERIAL

ISSUED

SAFETY

ISSUED

CUSTOMER

ISSUED

MATERIAL

ISSUED

MATERIAL

ISSUED

MATERIAL

ISSUED

MATERIAL

ISSUED

MATERIAL

ISSUED

MATERIAL

ISSUED

CUSTOMER

ISSUED

MATERIAL

Not applicable
Author

Good morning!

Did not work. I need you to count nulls in the Delayed column, only when the Status column has the ISSUED option

Status

Delayed

ISSUED

ISSUED

SAFETY

ISSUED

INPRG

ISSUED

ISSUED

CUSTOMER

ISSUED

ISSUED

MATERIAL

ISSUED

MATERIAL

ISSUED

MATERIAL

ISSUED

SAFETY

ISSUED

CUSTOMER

ISSUED

MATERIAL

ISSUED

MATERIAL

ISSUED

MATERIAL

ISSUED

MATERIAL

ISSUED

MATERIAL

ISSUED

MATERIAL

ISSUED

CUSTOMER

ISSUED

MATERIAL

felipedl
Partner - Specialist III
Partner - Specialist III

Just add another clause to the set analysis.

count({<Status={"ISSUED"},Delayed={""}>}Status)


Regards,

Felipe.

Not applicable
Author

Did not work! Counting with this expression gives "Zero"

felipedl
Partner - Specialist III
Partner - Specialist III

Hi, attached a QVW with an example

Hope it helps.

Felipe.

ahaahaaha
Partner - Master
Partner - Master

Hi,

May be like this (look attached file)

RangeSum(Above(Count({<Delayed={"=Len(Delayed)=0"}>}Delayed), 0, ROWNO(TOTAL)))


Regards,

Andrey