Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
xarapre7
Creator II
Creator II

select specific value for filters

Hi experts!

I have a list of different filters/listboxes as follows:

Mgr1Open

Mgr2Open

Mgr3Open

Mgr1Resp

Mgr2Resp

Mgr3Resp

Mgr1Cls

Mgr2Cls

Mgr3Cls

And i have a MgrTypes field as 'O' for *Open, 'R' for *Resp and 'C' for *Cls

What should be the right expression for each Mgr filter above that when i select one, it will correspond to the right MgrType (eg. If i select Mgr1Resp, Mgr2Resp or Mgr3Resp only MgrType 'R' is selected)

Thanks in advance!

4 Replies
fvelascog72
Partner - Specialist
Partner - Specialist

Hi,

I think I don't understand your problem.

Try with my app.

Saludos.

effinty2112
Master
Master

Hi Preciosa,

In Settings \ Document Properties create a Field Event Trigger on selection of the field Mgr.

1.png

Good luck

Andrew

its_anandrjs

Do you have any type field.

its_anandrjs

It seems you have MgrTypes field if so then try this in Field Event trigger


MgrTypes


=Wildmatch(MgrTypes,'*R*')


OR


=Mixmatch(MgrTypes,'*R*')


Or


=Match(MgrTypes,'*R*')