Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
chiranjivdas
Contributor III
Contributor III

How to stop a certain data value from show up?

I have data for Company and Sales $$. Under Company, the values are Ford, GM, Toyota, Honda, Kia and under Sales I have $$ amounts. I want to pull everything in the Qlikview report except Kia and the $$ values associated with it. How can I create such a condition and where? Is it in Edit Script under File?

Thanks,

CD

1 Solution

Accepted Solutions
Not applicable

You should be able to add a condition at the end of the load:

LOAD

Company,

Amount

FROM xyz

WHERE Company <> 'Kia';

You could also exclude in your report using set analysis. For instance:

sum({<Company -= {'Kia'}>}Amount)

Hope that helps.

Best,

Matt

View solution in original post

1 Reply
Not applicable

You should be able to add a condition at the end of the load:

LOAD

Company,

Amount

FROM xyz

WHERE Company <> 'Kia';

You could also exclude in your report using set analysis. For instance:

sum({<Company -= {'Kia'}>}Amount)

Hope that helps.

Best,

Matt