Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Conditional Values displaying in List Box

Hi All,

I have two list boxes

Type:                       Value:

Alpha                         Ana

Beta                          Sunny

                                 Mica

                                 West

If I select Type ='Alpha' then Value list box should display Ana and Sunny Only.

If I select Type = 'Beta' Then All Values in 'Value' list bos should be displayed

How to do this?

1 Solution

Accepted Solutions
MayilVahanan

HI

PFA

Hope it helps

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.

View solution in original post

5 Replies
gajapathy74
Creator II
Creator II

Given below is one of the way to filter the Value list box based on Type selection. By join the Type and Value.

Type:

LOAD * INLINE [

    Type

    Alpha

    Beta

];

DataValue:

LOAD * INLINE [

    Type, Value

    Alpha, Ana

    Alpha, Sunny

    Beta, Ana

    Beta, Sunny

    Beta, Mica

    Beta, West

];

Not applicable
Author

Hi,

Pl find attached document. List box is showing all the associated values.

Instead of this I wanna to limit the values.

Oleg_Troyansky
Partner Ambassador/MVP
Partner Ambassador/MVP

What you want is the feature in the List Box properties, called "Hide Excluded". We typically recommend against it, to show people both associated and not associated values, but in certain cases it's justified to hide the values that are not associated.

Not applicable
Author

Hi,

  Go to the list box properties->General You can find the option hide excluded so you can hide the excluded values which is not associated with your selection.

MayilVahanan

HI

PFA

Hope it helps

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.