Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have data with timestams in the python time.ctime() format.
Example:
"Tue Jun 19 08:40:07 2018"
How can i "transform" this format in a usable date/time format? I would be very happy about helpful suggestions!
😉
If you have the date as a string like you show then this will work to interpret the string and convert it into a Qlik date:
=Date#( Mid( FieldOrVariableWithDate ,5,16 ) , 'MMM D hh:mm:ss YYYY' )
If you have the date as a string like you show then this will work to interpret the string and convert it into a Qlik date:
=Date#( Mid( FieldOrVariableWithDate ,5,16 ) , 'MMM D hh:mm:ss YYYY' )
Great! Thx!