Skip to main content
Announcements
Qlik Introduces a New Era of Visualization! READ ALL ABOUT IT
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

ignore a value

hi all

i have a field SHIFT

SHIFT:

A

B

C

D

i want to ignore value D.  how can i do.

Thanks

1 Solution

Accepted Solutions
jonathandienst
Partner - Champion III
Partner - Champion III

Hi

You have not been very specific.

To exclude in script: LOAD A, B, C From Table;

To exclude in calc dimension: If(SHIFT <> 'D', SHIFT)

To exclude in expression: Sum({<SHIFT-={'D'}>} Value)

Hope that helps

Jonathan

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein

View solution in original post

2 Replies
jonathandienst
Partner - Champion III
Partner - Champion III

Hi

You have not been very specific.

To exclude in script: LOAD A, B, C From Table;

To exclude in calc dimension: If(SHIFT <> 'D', SHIFT)

To exclude in expression: Sum({<SHIFT-={'D'}>} Value)

Hope that helps

Jonathan

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein
Not applicable
Author

Hi Jonathan,

If I could get more specific.  In an expression on a pivot chart.

sum({<STEP_SECTION={"PAC"}>}QUANTITY)  .....This works......

sum({<STEP_SECTION.={"PAC"}>}QUANTITY)  .....This doesn't work......  And <> instead of .= doesn't work either.

I'm trying to exclude PAC instead of only include it.

Thanks

BobC.