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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Set analysis with missing values

Hi,

The expression on my chart :

Count({$ <MOTIF -= {'Ne veux pas être recontacté'}>}DISTINCT SOLID_SOL)

In the field MOTIF i have a lot of missing values because it is an optionnal field.

The set analysis excluding the value "Ne veux pas être recontacté" exclude all the SOLID_SOL with a missing value in the field MOTIF.

How can i do to keep the SOLID_SOL with a missing value in the field MOTIF ?

Thanks

3 Replies
Anonymous
Not applicable
Author

try this expresion ----->count ({$<MOTIF-={ } >}distinct SOLID)

Anonymous
Not applicable
Author

follow the doc in this link

http://community.qlik.com/docs/DOC-3155

Not applicable
Author

in the backend put if(isnull(SOLID_SOL),'MISSING_SOLID_SOL',SOLID_SOL) AS SOLID_SOL

Then Count({$ <MOTIF -= {'Ne veux pas être recontacté'},SOLID_SOL-={'MISSING_SOLID_SOL'} >} Distinct SOLID_SOL)