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

Announcements
Now accepting applications for the Qlik Luminary and Partner Ambassador Programs: Apply by July 6!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

CUSTOMIZE SELECTION BOX

I am trying to accomplish this

If the User selects a Value from the List Box the Current Selection Box Shall Display

for Example if the user selects a Fiedl " Year" the Current Selection Box shall say "You Have Slelected Year " and the 'Field Value for Year'

Is it possible

Labels (1)
3 Replies
Luis_Cortizo
Employee
Employee

Not with the native object.

You can design a text object and use the GetCurrentSelections() (for instance) expression.

Hope it helps.

Best regards.

rustyfishbones
Master II
Master II

try adding this in a text object

=IF(ISNULL(GetCurrentSelections()),'Nothing Selected', 'You have Selected ') & GetCurrentSelections(' | ')

MK_QSL
MVP
MVP

If you want to display if any field is selected, use what Alan has suggested but if you want particular field and it's selected value, use below...

I have given below example as customer name. You can change as per your required field name.

=IF(ISNULL(GetFieldSelections([Customer Name])),'No Customer Selected', 'You have Selected ') & GetFieldSelections([Customer Name],' | ')