Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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.
Please find the attached document.
Thanks,
Mani
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.
You can do that using trigger. Try to post your sample qvw.
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.
PFA Doc,
Thanks,
Mani
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
];