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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

list box, current selection box

my one the dimension column lets say "is_sold" have two type of values 1,0

is_sold

1

0

this column is put into list box, i use expression - =if(is_sold=1 ,'yes','no')

2. i also have current selection box on my dashboard.

behavior:

if i select filter from list box to "yes" then current selection box also show to 1 (which is basic value of column)

i want:

i want to see "yes" in selection box instead of 1.

without using dual function at script level.

is it possible?

1 Reply
AbhijitBansode
Specialist
Specialist

As per my understanding, its directly not possible in UI.

However, you can do a workaround. use text object to show current selections.

You can then write expression in it.

if(GetFieldSelections(is_sold)=1,'yes','no')