Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ralfbecher/bf08b96cfee22ac60f4b to your computer and use it in GitHub Desktop.
Save ralfbecher/bf08b96cfee22ac60f4b to your computer and use it in GitHub Desktop.
QlikView Extension determine amount of Dimensions from first data row (if multiple)
// get amount of Dimensions
var nDimensions = this.Data.Rows[0].filter(function(col){return !(col.color == undefined);}).length;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment