Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
That returns all possible values:
=CONCAT(DISTINCT Field, ', ')
or all values that are in the data model:
=CONCAT({1} DISTINCT Field, ', ')
You could use concat({1} distinct Field, ',').
- Marcus
That returns all possible values:
=CONCAT(DISTINCT Field, ', ')
or all values that are in the data model:
=CONCAT({1} DISTINCT Field, ', ')