Skip to content

Instantly share code, notes, and snippets.

@stefanwalther
Created November 26, 2013 15:24
Show Gist options
  • Save stefanwalther/7660283 to your computer and use it in GitHub Desktop.
Save stefanwalther/7660283 to your computer and use it in GitHub Desktop.
Set a variable value from within a QlikView extension.
function setVariableValue(varName, val) {
var qvDoc = Qv.GetCurrentDocument();
qvDoc.SetVariable(varName, val);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment