Skip to main content
Announcements
Qlik Introduces a New Era of Visualization! READ ALL ABOUT IT
cancel
Showing results for 
Search instead for 
Did you mean: 
Uzumaki_N
Contributor III
Contributor III

Simple Writeback Solution in Qlik Sense Enterprise.

Hi Guys,

Is there any way to capture feedback(user input) from user through Qlik Sense UI.

It should be captured anywhere like variable or QVD or anything - Thanks.

 

2 Replies
Anil_Babu_Samineni

You need to go to extensions as native is not allowed to store input feedback in dashboard just yet. 

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
MATC
Contributor III
Contributor III

There might be a solution to that.

Using variable input to put desired feedback then storing it (using button visualization) with appriopriate key (e.g. ID or some other field) to variables .
Then with the same button using partial reload create table (e.g. as below)
-You need to create the WriteBack qvd first. 
You may need to play around to find proper key and debug it. Also users need to have appropriate security roles to be able to reload the app.

WriteBack:
add LOAD
"Now",
Msg,
ID
FROM [lib://QlikSenseStorage/WriteBack.qvd](qvd);

IF IsPartialReload() then

concatenate (WriteBack)
add load distinct
now() as Now,
'$(vInput)' as Msg,
'$(Dim) as ID
AutoGenerate(1);

Store WriteBack into [lib://QlikSenseStorage/WriteBack.qvd](qvd);

ENDIF;