Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
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?