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

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How can Apply 2 Sliders (Sale and Inventory Sliders ) to a pivot table?

How can Apply 2 Sliders (Sale and Inventory Sliders ) to a pivot table?

For Example : "Sales between 100 and 200"  & "Inventory between 10 and 20"  ( dynamic filter)

Labels (1)
1 Solution

Accepted Solutions
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

That looks correct.


talk is cheap, supply exceeds demand

View solution in original post

5 Replies
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

See attached qvw.


talk is cheap, supply exceeds demand
Not applicable
Author

Hi Gysbert ,

Thanks for your reply.

but i need Only filter Articles and Areas that "Sales between 100 and 200"  AND "Inventory between 10 and 20"  ( dynamic filter).

no OR condition.

Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

Then put both conditions in both expressions instead of each expression having only one condition each.


talk is cheap, supply exceeds demand
Not applicable
Author

is it correct in both expressions?

expressions1:

if( sum(DYNAMIC_EXCHANGE.CURRENT_INVENTORY) >= $(vMin) and sum(DYNAMIC_EXCHANGE.CURRENT_INVENTORY) <= $(vMax) and

sum(DYNAMIC_EXCHANGE.SALES) >= $(vMin_sale)  and

sum(DYNAMIC_EXCHANGE.SALES) <= $(vMax_sale)

,sum(DYNAMIC_EXCHANGE.CURRENT_INVENTORY))

expressions2:

if( sum(DYNAMIC_EXCHANGE.CURRENT_INVENTORY) >= $(vMin) and sum(DYNAMIC_EXCHANGE.CURRENT_INVENTORY) <= $(vMax) and

sum(DYNAMIC_EXCHANGE.SALES) >= $(vMin_sale)  and

sum(DYNAMIC_EXCHANGE.SALES) <= $(vMax_sale)

,sum(DYNAMIC_EXCHANGE.SALES))

Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

That looks correct.


talk is cheap, supply exceeds demand