Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
gkcchowdary
Creator
Creator

tell me bellow requirement?

I have in line table like

load * inline [

id,name

1,sai

2,ram

3,kiran

];

my requirement is i want insert new data like 4,sam through input box in front end.

so u enter any value in input box  automatically that data insert into inline table.how?

4 Replies
tresesco
MVP
MVP

This would somewhat be possible during load, like:

load * inline [

id,name

1,sai

2,ram

3,kiran

];

Load

      Input('Enter id', 'Input Box') as id,

      Input('Input name', 'Input Box') as name

AutoGenerate 1;

Try to reload the attached qvw, you would see how it behaves and decide if that helps.

jagan
Luminary Alumni
Luminary Alumni

Hi,

I think for this purpose Qlikview is not the best tool, you can create a ASP.Net, Jave, html page to receive the input and save it in a csv or some other files.

Qlikview is to pull the data from the sources and visualize the data.

YOu can do this by using Dynamic update option but not suggestible.

Dynamic Update - Simple Database

Regards,

Jagan.

anat
Master
Master

May be attached qvw will help you?

settu_periasamy
Master III
Master III

Hi,

Sample Attached Based on Dynamic Update. But When you reload, the data will not be available. Dynamic update is not good option to load the Data. But we can do..

See the below screen shot.. You can copy from excel and paste it in your input box and Click Insert Button..

Picture1.jpg