Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Q&A with Qlik - Qlik Cloud Migration: Questions about migrating to Qlik Cloud? Catch the latest replay!
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

function which returns all values of a particular field

Hi,

I need a function which returns all values of a particular field. Is it possible?

If I use GetFieldSelections it returns only those values that have been selected.

Thank you in advance,

Larisa

Labels (1)
1 Solution

Accepted Solutions
swuehl
Champion III
Champion III

That returns all possible values:

=CONCAT(DISTINCT Field, ', ')

or all values that are in the data model:

=CONCAT({1} DISTINCT Field, ', ')

View solution in original post

2 Replies
marcus_sommer
MVP
MVP

You could use concat({1} distinct Field, ',').

- Marcus

swuehl
Champion III
Champion III

That returns all possible values:

=CONCAT(DISTINCT Field, ', ')

or all values that are in the data model:

=CONCAT({1} DISTINCT Field, ', ')