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

Announcements
Write Table now available in Qlik Cloud Analytics: Read Blog
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Show or load values that equal och above 0

Hi,

Im trying to show values from a field called "Balans" but it contains lots of -1 and 0 values. I want to present this in tabel or tablebox but i want to get rid of the - and 0 values,

ive tryed a bunch of stuff like in Qlikview format dont show null values but this is not enough.

any ideas, can i do a load statement anybody?

thx

Theodor

1 Solution

Accepted Solutions
oknotsen
Master III
Master III

Add to your load script:

where Balans >0

May you live in interesting times!

View solution in original post

2 Replies
oknotsen
Master III
Master III

Add to your load script:

where Balans >0

May you live in interesting times!
Not applicable
Author

Thx solved it by putting your example in

SQL SELECT *

FROM "DBNAME".dbo.DBNAME

WHERE Amount >=1;