Last active
December 15, 2015 19:59
-
-
Save ralfbecher/5314845 to your computer and use it in GitHub Desktop.
Convert QlikView local time into a Unix timestamp
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
LET t1 = (num(timestamp#('2013-01-11 18:00:00', 'yyyy-mm-dd hh:mm:ss')) - 25569) * 86400; | |
LET t2 = (num(Now(1) - 25569) * 86400; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment