Skip to main content

App Development

Discussion board where members can learn more about Qlik Sense App Development and Usage.

Announcements
Qlik Cloud Maintenance is scheduled between March 27-30. Visit Qlik Cloud Status page for more details.
cancel
Showing results for 
Search instead for 
Did you mean: 
modernnonamad
Contributor II
Contributor II

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)

modernnonamad
Contributor II
Contributor II
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!!