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

Listing the text of all names based on another field value

I am new to Qlik Sense and this may be incredibly simple.

 

I need to be able to show all pupil names in a KPI box based on their text scores equaling a specific amount.  For example in the following table Dave, Joe and Sam have a NRSS Maths score of 90 and I would like to just be able to show a list of their names in a KPI box.

PupilNameNRSS Maths
Dave90
Barry69
Jane132
Alice69
Jenny119
Joe90
Matthew85
Sam90
Daisy108

 

I have tried:

= Only({<[NRSS Maths] = {'90'}>} [PupilName])

but this only returns a specific pupil if nobody else has the same score.

Thanks

Labels (1)
1 Solution

Accepted Solutions
lironbaram
Partner - Master III
Partner - Master III

concat({<[NRSS Maths] = {'90'}>} distinct [PupilName],',')

View solution in original post

2 Replies
lironbaram
Partner - Master III
Partner - Master III

concat({<[NRSS Maths] = {'90'}>} distinct [PupilName],',')

paul123
Contributor II
Contributor II
Author

Brilliant - works perfectly - many thanks.