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

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Current selection

Hello Good People![:)]

Can someone tell me how can i display current selection on a text object.

what i did:

=IF(DISTINCT COUNT(FNAMES)=1,FNAMES,'Make a name select')

the above statement work, but if i want to select more than 1 FNAME, IT display blank.

What must i do?

Thanking you in advance!

1 Solution

Accepted Solutions
Not applicable
Author

Hi,

use

=GetCurrentSelections(';') or

=GetFieldSelections(ORDER_TYPE)

instead.

Good luck!

Rainer



View solution in original post

3 Replies
Not applicable
Author

This is working for me:

=IF(COUNT(FNAMES) = 1, FNAMES, 'Make a name select')

Not applicable
Author

Hi,

use

=GetCurrentSelections(';') or

=GetFieldSelections(ORDER_TYPE)

instead.

Good luck!

Rainer



Not applicable
Author

OK THANKS, It's what i need.

Maybe to forward the question: let me say if there is selection made then display those selection if not give a message like 'Make selection'.

How can i do that?