Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

how to remove 0 on column.

Good Day Qlikcommunity,

I want to remove all who has 0 penalty in the table.

Any advice and tips? Please see Attachment

Thanks in advance

1 Solution

Accepted Solutions
settu_periasamy
Master III
Master III

When you are using the "Suppress Zero value", and if you have the value '0' in the Penalty field, it wont display.

Edit: Uncheck the "Suppress Missing" on the same tab if you have null values

View solution in original post

23 Replies
sinanozdemir
Specialist III
Specialist III

Hi Lester,

If you want to remove it in the load script, then please see the below screenshot:

Capture.PNG

settu_periasamy
Master III
Master III

Hi,

what is your expressions? if the penalty is the only expression, then check the "Suppress When value is Null" for your all dimensions.

Chanty4u
MVP
MVP

Hi

PFA,

if u want use dat dimension in chart do like dis or go through wit attached .qvw

Thank you

Sureshsupress.JPG

Not applicable
Author

Sir I only need to remove the owner who has 0 penalty on this table only. What if I need penalty with 0 on the later part?

qlikviewwizard
Master II
Master II

Hi Use this script:

CH02_20150703_094758:

LOAD year1,

    qtr1,

    RPUNum,

    owner,

    [Owner Pin],

    address,

    penalty,

    if(penalty<> 0,1,0) as penaltynew

FROM

CH02_20150703_094758.xls

(biff, embedded labels, table is Sheet1$);


Use list box on penaltynew column.


select value '1' from penaltynew and select the options as shown in screen.

Capture.JPG


Capture.JPG

Not applicable
Author

Sir I only use penalty on expression, I dont know yet how to remove those owner who's penalty is 0 and display owner who has penalty only.

Chanty4u
MVP
MVP

hi

u can use condition like

Where Dimension<>0;

Thank you

Suresh

sinanozdemir
Specialist III
Specialist III

Then you can use "Surpress when value is zero" in expression tab.

Not applicable
Author

Hi qlikview wizard,

Is there other way? I load it on a Database not in Excel actually.
Can you make remove the 0 using expression?