Skip to content

Instantly share code, notes, and snippets.

@ralfbecher
Created May 16, 2016 15:47
Show Gist options
  • Save ralfbecher/aeea42cc9ad58fbb6aded0e0f907ddaf to your computer and use it in GitHub Desktop.
Save ralfbecher/aeea42cc9ad58fbb6aded0e0f907ddaf to your computer and use it in GitHub Desktop.
JavaScript function to get QlikView or Qlik Sense numerical Date value from JavaScript Date
function qlikNumberFromDate(d) {
return d.getTime() / 86400000 + 25569;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment