Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
how to remove non key field and script variable in qlikview
Dropping a field can be done with a Drop Field MyField statement.
A variable can be dropped if it was created in the script and it is set to null before the script ends with a line like SET vMyVar=;
Drop Field FieldName from TableName;
To Drop a variable write below at script end
SET vVariableName = NULL();
and delete the variable from
Setting >> Variable Overview