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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Search string

    hi

i  have  a requirement where i need to select all the data in list box except one string i.e Branch Segment . i need  to select all the values except branch Segment .

thanks

1 Solution

Accepted Solutions
jagadeesh_diamo
Contributor III
Contributor III

First you select 'Branch Segment' then click on SELECT EXCLUDED.

View solution in original post

4 Replies
tresesco
MVP
MVP

Search string, something like:

='('&Concat({<YourField=- {'Branch Segment'}>} Distinct YourField, '|') &')'

or,

First trigger: To select brach segment

Second trigger: To select excluded

its_anandrjs
Champion III
Champion III

Hi,

In the list box write expression

Assume BranchDetails contains branch Segment and other details also

=If( Not Match(BranchDetails,'branch Segment')

or

If( BranchDetails <> 'branch Segment' ,BranchDetails)

Regards

Anand

jagadeesh_diamo
Contributor III
Contributor III

First you select 'Branch Segment' then click on SELECT EXCLUDED.

jagadeesh_diamo
Contributor III
Contributor III

Good...