Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
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

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...