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

Announcements
Qlik Connect 2026! Turn data into bold moves, April 13 -15: Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

why SetInputFieldValue doesn't work?

here is my single table

LOAD * INLINE [
id,F1, F2, index,flag
id1,11, 21, 0,0
id2,12, 22, 1,0
id3, 13, 23, 2,0
id4,13,24,3,0
];

I try modify filed vales, and doesn't work .

sub test
ActiveDocument.Fields("id").SetInputFieldValue 0, "test"
end sub

No error messages

macro just stops at the SetInputFieldValue line

???

Thanks

Vlad

1 Solution

Accepted Solutions
Not applicable
Author

Did you have

inputfield id;

before the load of the table?

View solution in original post

2 Replies
Not applicable
Author

Did you have

inputfield id;

before the load of the table?

Anonymous
Not applicable
Author

magic!

Thanks