Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I am trying to use INPUTFIELD, but I still cant input enything in the chart for specified field, see picture of the chart:
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.
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!
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.
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!
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.
Hmm, you are right, It doesn't work with Resident Load.
Thanks...
use INPUTFIELD B; before K Table