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

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
pgalvezt
Specialist
Specialist

Remove 0 from table into script

Hello,

I have a table with 3 fields with many values they all has '0', what I want is remove them but filtered, because if i remove a 0 value the other field maybe can a value <> to 0,

So I need filtered all 0 in 3 fields and the remove them all this into the script.

I prepared an excel file for better comprehenssion,

Lines 2 - 6 - 9 were removed...

Thanks!

1 Solution

Accepted Solutions
el_aprendiz111
Specialist
Specialist

Hi,

tmp:
LOAD id,
[money 1],
[money 2],
[money 3]
FROM
[..\..\Documents\Downloads\Example (1).xlsx]
(
ooxml, embedded labels, table is [Table in script])

Where RangeSum([money 1],[money 2],[money 3])>0
;

View solution in original post

1 Reply
el_aprendiz111
Specialist
Specialist

Hi,

tmp:
LOAD id,
[money 1],
[money 2],
[money 3]
FROM
[..\..\Documents\Downloads\Example (1).xlsx]
(
ooxml, embedded labels, table is [Table in script])

Where RangeSum([money 1],[money 2],[money 3])>0
;