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

How to remove null values and '0' in script?

Hi have some manger and employess data,amount is measure

now some mangers amount is zero or null

now i want restrict  mangers or employess who has zero amount or nul values

please help on that

thanks

,

5 Replies
alexandros17
Partner - Champion III
Partner - Champion III

Load

...

...

From

...

Where Amount <> 0 and not isnull(Amount)

Let me know ...

vikasmahajan

Another way in dimension you can use suppress null option please find attached setting

Vikas

Hope this resolve your issue.
If the issue is solved please mark the answer with Accept as Solution & like it.
If you want to go quickly, go alone. If you want to go far, go together.
sujeetsingh
Master III
Master III

where Len(Manager)<>0

qlikmsg4u
Specialist
Specialist

use where condition like where Amount <>0

Hope this will help

MayilVahanan

Hi

Try like this

in Expression

=Sum({<Manager = {"=Sum(Amount) <> 0"}>}Amount)

Script:

Load * from tablename where Amount <> 0 or Not IsNull(Amount);

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.