Skip to main content
Announcements
Live today at 11 AM ET. Get your questions about Qlik Connect answered, or just listen in. SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
sebastian_fager
Contributor III
Contributor III

Indirect bookmark

Hi,

Is't possible to create and save a indirect(select all except...) bookmark?

I have a selection of all retails chains except one. The problem is next time i use the bookmark a new chain has been added to the database. So if am not careful i will miss this new chain when i use the old bookmark, and i must create a new bookmark och delete the old one.

Ideas to handel this?

1 Solution

Accepted Solutions
Anonymous
Not applicable

For text you have to use single quotes.

This

=not match(Kedja, 'InternKund')


Or this:


=not match([Kedja], 'InternKund')

View solution in original post

5 Replies
ahaahaaha
Partner - Master
Partner - Master

Hi,

It's not hard to do. Download data, select what you want to exclude. Call it for example Bookmark1. Further in the diagram, we exclude this selection.

For example,

Sum({1-Bookmark1}Value)



Look attached file. If in script code change "Autogenerate 10" to "Autogenerate 20", Exception value ID=4 will remain.

Regards,

Andrey

Anonymous
Not applicable

You should be able to enter an expression in your search field and make that your book mark.

You could do something like

=not match(ID,2,3)

This would filter to all ID numbers that are not 2 or 3.

Create a bookmark on that and it will automatically include any new ID numbers.

sebastian_fager
Contributor III
Contributor III
Author

Hi,

Are you sure? Tried this:

=not match(Kedja, InternKund)

Screenshot 2017-07-10 08.34.18.png

and

Screenshot 2017-07-10 08.36.30.png

But didn't work

mangalsk
Creator III
Creator III

instead you can use trigger to select all excluding 1 value

Anonymous
Not applicable

For text you have to use single quotes.

This

=not match(Kedja, 'InternKund')


Or this:


=not match([Kedja], 'InternKund')