Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

update data in table [ inputfield]

dear QV friend,
Please, One question about inputfield .
In this table:

tab:

inputfield a,b;
Load * inline [

a,b
1,2
2,5
];

Store *
from tab into example.qvd;

The store works.
Now I reload the data stored with inputfield

inputfield
a,b;
Load * from example.qvd;

the data do not changes. the table do not update the data I loaded
but remains the old data I post in inputfield .
Does exists some way to update the data I reload in the same table?

Thanks best regards
Slash

2 Replies
Miguel_Angel_Baeyens

Hello Slash,

I think that you are using when you reload the same values for your table without being dropped. I mean, are you always using the inline values instead the QVD ones?

I'm working with this example based in yours:

//inputfield

inputf:
inputfield a,b;
Load * inline [
a,b
1,2
2,5
];
Store inputf into example.qvd;
DROP TABLE inputf;

inputfqvd:
LOAD a, b FROM example.qvd (qvd);






And works properly. If you create a tab and change the values, the values are effectively changed and after reloading, you will see that the values are changed.

Hope this helps.

Miguel_Angel_Baeyens

Hello Slash,

I think that you are using when you reload the same values for your table without being dropped. I mean, are you always using the inline values instead the QVD ones?

I'm working with this example based in yours:

//inputfield

inputf:
inputfield a,b;
Load * inline [
a,b
1,2
2,5
];
Store inputf into example.qvd;
DROP TABLE inputf;

inputfqvd:
LOAD a, b FROM example.qvd (qvd);




And works properly. If you create a tab and change the values, the values are effectively changed and after reloading, you will see that the values are changed.

Hope this helps.