Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hey!
I need to create a button that sets multiple fields to the selected values of multiple other filters.
I created a test qvf as an example (see file attached):
What this button should do is:
I figured out to create 3 buttons which work to my satisfaction (see buttons: “set name to ref_name”, “set number to ref_number”, “set date to ref_date”).
However, I need to create one single button that performs all the 3 actions above, so you don't need to click on 3 different buttons. I tried to do this, but it doesn’t work (see button “set name to ref_name + set number to ref_number + set date to ref_date”).
Any ideas how to solve this?
Thank you very much for your help!
Sorry, I don't think you can do this without first removing the " from you "Hello"
To change the string to remove the double "" you move the replce() outside of the expression, like:
=replace(
'('&'"'& GetFieldSelections(ref_name,'"|"', GetSelectedCount(ref_name, True())) &'"'&')'
,'""', '"' )
But if you do this the selection will not be correct as Qlik will try to Select Hello, not "Hello".
I doubt you can get around this, but if anyone has an idea I would also love to see it.