Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Based on value of the Listbox1 the value in Listbox2 has to be defaulted\selected

Hi,

Can you please suggest how can I implement the requirement "Based on value of the Listbox1 the value in Listbox2 has to be defaulted\selected".

Example : I have ListBox1 with values as

ListBox1:

ABC

PQR

XYZ

ListBox2:

abc

pqr

xyz

So if I select valueas "ABC" in ListBox1 then value "abc" should get selected in ListBox2.

Please suggest , step-by-step implementation as I am new QV.

Thanks in advance.

7 Replies
Not applicable
Author

Please find the attached document.

Thanks,

Mani

Anonymous
Not applicable
Author

Mani,

Thanks for your quick reply.

The issue is I have to check if ListBox1 value has been selected as "India" then the ListBox2 value has to be selected as "Kerala".

If this value is selected then select this value.


tresesco
MVP
MVP

You can do that using trigger. Try to post your sample qvw.

jsingh71
Partner - Specialist
Partner - Specialist

What you mentioned in you original post kirman326 imlemented.

If you want something else then explain in proper way and if possible post any sample application.

Not applicable
Author

PFA Doc,

Thanks,

Mani

arulsettu
Master III
Master III

hi try this

test:

LOAD * INLINE [

ID, RegionName

1,ABC

2,PQR

3,XYZ

];

LEFT JOIN (test)

test1:

LOAD * INLINE [

ID, ContactName

1,abc

2,pqr

5,xyz

];