Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
bsbernabe
Creator
Creator

how to remove if field= 0 or negative qlikview

Hello There,

my concern is how to remove if field= 0 or negative QlikView?

below is the sample data

AccountData
123abcd123
456efgd456
789-
101hijk789
111qwer987
112hnyk096
1130

 

Best Regards,

Bing

Labels (1)
1 Solution

Accepted Solutions
Saravanan_Desingh

Can you try this?

LOAD * INLINE [
    Account, Data
    123, abcd123
    456, efgd456
    789, 
    101, hijk789
    111, qwer987
    112, hnyk096
    113, 0
    114, -5
]
Where Not IsNull(Data) And Data>0 And Data<>''
;

 The '-' might be Null representation. 

View solution in original post

1 Reply
Saravanan_Desingh

Can you try this?

LOAD * INLINE [
    Account, Data
    123, abcd123
    456, efgd456
    789, 
    101, hijk789
    111, qwer987
    112, hnyk096
    113, 0
    114, -5
]
Where Not IsNull(Data) And Data>0 And Data<>''
;

 The '-' might be Null representation.