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

Announcements
Discover how organizations are unlocking new revenue streams: Watch here
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to supress rows in Pivot table depending on expression value?

Greetings Qlikview Experts....

I am new to Qlikview and appreciate your help.

I am using Qlikview version 9.0

Oracle Database 11

I have a requirement where i need to suppress rows depending on an expression value, if the expression value is greater than or equal to input value(stored as variable).

I do have several other expression before and after this one but the value of this expression is

Expression:  =(sum({<YEARQUARTER={$(=Max(YEARQUARTER))}>} (ZIPDIST/1000) * CALCRATE)/13)/ZIPDIST

This expression is working asis and able sort on this expression aswell but not sure how to supress rows.

I will need suppress rows logic =((sum({<YEARQUARTER={$(=Max(YEARQUARTER))}>} (ZIPDIST/1000) * CALCRATE)/13)/ZIPDIST) >= InputVarValue.

Appreciate your time.

Thank you,

Pad

1 Solution

Accepted Solutions
Anonymous
Not applicable
Author

Set the dimension to suppress null values and then create an if() statement for your expression to set it to null if it is within your cut off logic.

If(CALCULATION >= InputVarValue,null(), CALCULATION)


View solution in original post

3 Replies
Anonymous
Not applicable
Author

Set the dimension to suppress null values and then create an if() statement for your expression to set it to null if it is within your cut off logic.

If(CALCULATION >= InputVarValue,null(), CALCULATION)


Not applicable
Author

Thnak you very much Johannes.

Not applicable
Author

Thank you very much Johannes

Appreciate your time.