Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have a Customer table.
I want to do Null Count for CUSTOMER_ID when ITEM_ID is NULL in the CUSTOMER Table.
Thanks,
H
Hi
Try like this,
=Count({<ITEM_ID ={' '}>} CUSTOMER_ID)
Regards,
Iyyappan
Using if
count( IF( IsNull(ITEM_ID ), CUSTOMER_ID) )
There is a function NullCount() . The solution that adrianoalmeida suggests will work also. See more on http://community.qlik.com/docs/DOC-3155.
HIC