Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi folks
I am having difficulty getting QlikSense to recognize a timestamp as a valid timestamp.
I am loading performance data from SQL to a temporary table:
SET TimestampFormat='YYYY-MM-DD hh:mm:ss.ffffff';
I then want to extract the timestamp and date etc from the temp data and write to a new table.
However the function fails and this is what is returned:
I am not sure what I am doing wrong.
Any advice would be greatly appreciated.
Thanks
Nigel
@nigelapt tty to trim the spaces
Can't really find any fault in your script, I used the identical script as yours but mine worked.
Can you try using floor function
Date(floor (field)) as date,
Timestamp (floor(field)) as datetime
@nigelapt tty to trim the spaces
Many thanks Kushal! That sorted it!