Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Reload Data based on a selected value

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

1 Solution

Accepted Solutions
Gysbert_Wassenaar

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));


talk is cheap, supply exceeds demand

View solution in original post

6 Replies
Not applicable
Author

have you tried rebooting you system?:P

Gysbert_Wassenaar

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));


talk is cheap, supply exceeds demand
Not applicable
Author

Gysbert, You are the man!

Thank you very much indeed, thats exactly what I was looking for

Wayne

techvarun
Specialist II
Specialist II

I need to pick the values between two dates and extract the values from a stored procedure

PriyankaShivhare
Creator II
Creator II

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

JHuis
Creator III
Creator III

Did you find a resultion for this?