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

INPUTFIELD doesnt work.

Hello,

I am trying to use INPUTFIELD, but I still cant input enything in the chart for specified field, see picture of the chart:

2018-02-02 13_17_44-QlikView x64 - Resellers Copy - [C__Users_retko_Desktop_Qlikview_QTests_InputFi.png

I just used simple script:

K:

LOAD * INLINE [

    A, B

    X, 10

    Y, 50

];


L:

NoConcatenate

LOAD

*

Resident K;


Drop Table K;


INPUTFIELD B;




I also tried to put INPUTFIELD B; before resident LOAD, still cant make it work.


Do I need to enable it somehow?

Thank you.

1 Solution

Accepted Solutions
stabben23
Partner - Master
Partner - Master

Looks like the resident load "Crashes" the Inputfield, which ofcource should be on top in the script.

if you Place inputfield before first load and remove the resident load, then it work, otherwise not.

If this is a bug, I dont know!

View solution in original post

5 Replies
tresesco
MVP
MVP

Not really sure what you are trying. However, to try inputfield and make it work, it should be

flagged before it is referenced in any LOAD  or SELECT statements.

Hence, put your inputfield statement at the beginning and try.

stabben23
Partner - Master
Partner - Master

Looks like the resident load "Crashes" the Inputfield, which ofcource should be on top in the script.

if you Place inputfield before first load and remove the resident load, then it work, otherwise not.

If this is a bug, I dont know!

vishsaggi
Champion III
Champion III

As other members mentioned your INPUTFIELD statement should be before the LOAD/SELECT script statement.

Try this :

INPUTFIELD B;

K:

LOAD * INLINE [

    A, B

    X, 10

    Y, 50

];

But remember INPUTFIELD works only in TableBox object. It does not function in straight table or Pivot table.

retko1985
Creator II
Creator II
Author

Hmm, you are right, It doesn't work with Resident Load.

Thanks...

jafari_ervin
Creator III
Creator III

use INPUTFIELD B; before K Table