Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Storing temporary user selections and writing them to qvd

Hi Guys,

I have a problem that I would like to try and solve with QlikView alone (no scripting). However as I am not very good with advanced front end dev... I would like some one to tell me if it is even possible.

Here is my problem. I have a straight table on my layout. Once someone select one row, and clicks a button the key value for this row should be written saved. I think that the value should be saved in a variable first and then on reload written to a table and added to a qvd.

I can do the second part, writing variable to a qvd, but cannot figure out how to append one variable to another.

My button has action 'set variable' and use this expression as a value: =$(vKeyStore)&', '&$(vKeyValue). But that gives garbage expression...

Do you have any ideas?

Tom

2 Replies
Not applicable
Author

And here is test QVW.

marcus_sommer

The reason why it didn't worked will be that your variables contain strings and you need to access them with single-quotes, like:

'$(VariableWithStrings)'

Edit: Within the qmc you could enable an audit-logging which will store most of the user-actions within a log-file.

- Marcus