Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I have a table that has customer names. I want to be able to select the customers name and then use this value to reload addittion data based on the value that I select. How do I do this? Ive tried drinking a glass of water with my head tipped upside down and also running round the garden naked at night none of which have been affective?
Wayne
You can do it with a variable (v_Customers) to store the selections and a partial reload using the variable in a where clause. See attached example.
Customers:
load * from customers.qvd (qvd);
Customerdetails:
REPLACE ONLY load * from customerdetails.qvd (qvd)
where match(customername, $(v_Customers));
have you tried rebooting you system?:P
You can do it with a variable (v_Customers) to store the selections and a partial reload using the variable in a where clause. See attached example.
Customers:
load * from customers.qvd (qvd);
Customerdetails:
REPLACE ONLY load * from customerdetails.qvd (qvd)
where match(customername, $(v_Customers));
Gysbert, You are the man!
Thank you very much indeed, thats exactly what I was looking for
Wayne
I need to pick the values between two dates and extract the values from a stored procedure
I have the same requirement in Qliksense but i want to autoreload the data based on current selection in field...how can we achieve this
Did you find a resultion for this?