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: 
Not applicable

How to exclude null in set analysis

I have a list of account,Project id ,Amount etc..  there are few blank for Project id's ,which i want to exclude those blanks project ids in the set analysis

how to i do that ?

for example

 

Account  Project ID     Amount
8150100XYZ-42459
8150 -5195

i want to exclude -5195 value , how do i write in the set analysis ?

i tried using sum({<Project ID-={ ' '}>} Amount) but this set analysis is not working.

Labels (1)
2 Replies
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

Try: {<Project ID={'*'}>} . That should filter out the nulls. If you want to filter out empty strings try {<Project ID-={''}>}


talk is cheap, supply exceeds demand
sunny_talwar
MVP
MVP

Somehow for me * alone did not work. I always had to use {'*?'}. If what Gysbert‌ does not work, you can give this a try as well:

{<Project ID={'*?'}>}


HTH

Best,

Sunny