Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
narender123
Specialist
Specialist

Divide a Field values into 2 list boxes.

I have a column "Regime" and i want it divide into 2 list boxes.This fied having multiple value like C1,C2,C4S,c,E1,E2,E3,T1,T2,T3,T,Z,...   etc.

1st list box show the values start with C means C*  after that name the list box as Import and 2nd list box show the values start with E means E* after that name the list box as Export.

Thanks in advance.

1 Solution

Accepted Solutions
fdelacal
Specialist
Specialist

i THING YOU NEED SOMETHING THAT THE QVW, I ATACH.

Hope that help you.

View solution in original post

4 Replies
fdelacal
Specialist
Specialist

i THING YOU NEED SOMETHING THAT THE QVW, I ATACH.

Hope that help you.

jagan
Luminary Alumni
Luminary Alumni

Hi Narender,

In load script arrive two new fields for Import and Export

Data:

LOAD,

     Field,

     If(Field Like 'C*', Field) AS Import,

     If(Field Like 'E*', Field) AS Export

FROM DataSource;

Now you can use Import and Export filters.  Hope this helps you.

Regards,

Jagan.

narender123
Specialist
Specialist
Author

Thanks.It is working.

narender123
Specialist
Specialist
Author

Thanks Jagan.

Its also working.