Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Filter Pane issue

Hello all,

Based on below table, I would like to create a "Filter Pane" in QlikSense, which only show the Trainers' Name (Robert, Amy, John and Paul). May anyone help please?

Thank you very much.

TypeAreaTypeNameSequence
TrainerRobert1
TrainerAmy1
TrainerJohn0
TrainerPaul0
EmployeeJack3
EmployeeAda4
EmployeeKim5
EmployeeLion5
EmployeeLeo3
1 Solution

Accepted Solutions
sunny_talwar

May be this

Aggr(Only({<TypeArea = {'Trainer'}>} TypeName), TypeName)

or this

If(TypeArea = 'Trainer', TypeName)

View solution in original post

3 Replies
sunny_talwar

May be this

Aggr(Only({<TypeArea = {'Trainer'}>} TypeName), TypeName)

or this

If(TypeArea = 'Trainer', TypeName)

Anonymous
Not applicable
Author

Thank you very much Sunny. I modified your statement to the below and the result was PERFECT!!

Merry Christmas to you and your loved one!

if(TypeArea='Trainer'and (Sequence='0'or Sequence='1'),TypeName)

sunny_talwar

Thanks my friend, wish you a very happy holidays as well!!