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

Announcements
Save $650 on Qlik Connect, Dec 1 - 7, our lowest price of the year. Register with code CYBERWEEK: Register
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Detaching specific objects from a chart

Hello,

I would like to create a chart object that is detatched from one list box, but is still connected to all of the other objects in the QlikView document.  How can I detatch specific objects from a chart?

Example:

Creating a line chart where the x-axis is static and shows all of the years from a database table, but the field for one of the list boxes is years. 

Thanks,

Sean

1 Solution

Accepted Solutions
Not applicable
Author

hello Sean,

i guess what you mean is how to ignore selections made in particular fields.

to do so you'll use the set analysis as follows:

sum({$<Field1=, Field2=>} Sales)

this example will sum up the sales ignoring selections in Field1 and Field2.

if you want to ignore all selections, then this will do the job:

sum({1} Sales)

hope that this is what you're looking for.

View solution in original post

3 Replies
Not applicable
Author

hello Sean,

i guess what you mean is how to ignore selections made in particular fields.

to do so you'll use the set analysis as follows:

sum({$<Field1=, Field2=>} Sales)

this example will sum up the sales ignoring selections in Field1 and Field2.

if you want to ignore all selections, then this will do the job:

sum({1} Sales)

hope that this is what you're looking for.

IAMDV
Master II
Master II

Hi Sean,

jp_bakhache is right. You can use..

Sum({$<Field1= >} Sales)

Where Field1 is ignored. However if you wanted to do other way around then please use the below expression. Everything will be ignored expect the Gender field and you can add more field names by adding the comma (,) after Gender.

=COUNT({$<[$(=Concat({1<$Field-={'Gender'}>}distinct $Field,'],[')&']=')>} Resp_ID)

In the above example except 'Gender' everything will be excluded.

I hope this helps!

Cheers - DV

Not applicable
Author

Great Solution DV, i was looking for something like that to separate the min and max possible (selected) dates from user selections within product or company fields, so that the user does get a whole month if he selects it, even when the selected product just was sold on a single day. And to exclude a 100 + fields within set analysis was not the way I wanted to go thx a lot