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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Text Entry Methodology

Hello,

What is the best way to handle text entry in QlikView.  I want to have a user enter in feedback into a text field, like an edit box.  Right now I cannot seem to find a successful method, any suggestions?

Here is an example of the type of form I would like to include:

http://www.quackit.com/html/codes/html_text_box_code.cfm

Thanks,

Tyler

2 Replies
sbaldwin
Partner - Creator III
Partner - Creator III

Hi, if you simply want a single field then you could just create add the sheet object input box and link it to a variable, if you want multiple imput fields then you could create an imput field in your script, by adding :

inputfield yourfieldnamehere;

then add load this field on your table using:

load *,  '' as  yourfieldnamehere

... the rest of your script

the the user can then add in values in tables for the field yourfieldnamehere.

Thanks

Steve

Not applicable
Author

You could also try INPUTBOX in macro code. Unfortunately this pops up a separate dialog box for data entry, but it does work for some applications.