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

Announcements
Learn how to migrate to Qlik Cloud Analytics™: On-Demand Briefing!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to not take into account the current selections

Hi,

I have a Qlikview bar chart with :

-dimension = Customer

-expresion =sum(Quantity shipped)

-expresion=sum(Quantity in order)

I can do selections by year, by month. So when I select a certain year, month I get the 'shipped' quantities and 'in order' for that specific year and month.

Now my problem is that I want to add a new expresion that will sum all my quantities 'in order' without taking into account the year and month selected.

Is this possible? How can I specify in my formula that the current selection for year and month must not be taken into account?

Thank you! 

1 Solution

Accepted Solutions
Not applicable
Author

if you only want to exclude those dimensions you can do:

sum({<year=,month=    >}Quantity in order)

if you want to exclude all selection then this should do:

sum({1}Quantity in order)

View solution in original post

2 Replies
Not applicable
Author

if you only want to exclude those dimensions you can do:

sum({<year=,month=    >}Quantity in order)

if you want to exclude all selection then this should do:

sum({1}Quantity in order)

Not applicable
Author

Hi,

I tried and it's working.

Thank you for your answer!