Skip to main content
Announcements
Join us at Qlik Connect for 3 magical days of learning, networking,and inspiration! REGISTER TODAY and save!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Reset input fields during reload

Is there someway to reset input fields during reload without macro? Can I put this in the script somehow?

2 Replies
prieper
Master II
Master II

SET YourField = NULL();

Peter

Not applicable
Author

In the beginning of my script I now have for example

inputfield MyField;

LOAD
MyField
FROM SomeTable;

And in my table I have the expression

inputsum(MyField)

Do you mean that if I put

SET MyField = NULL();

in the script the changes I make in the inputfields get changed back to what was loaded in the script?