Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Date/time format

Hi all,

I'm trying to format the following date-time format, but nothing so far has worked.

Current format . eg. :31/AUG/11 01:57:39.000000000 PM

I've tried this expression with no luck :  date(floor(timestamp#(CALL_DATETIME,'DD/MMM/YY hh:mm:ss')),'DD/M/YYYY') as CallDateTime

Any ideas on how to achieve the date format : DD/MM/YYYY hh:mm:ss ?

Many thanks

1 Solution

Accepted Solutions
sivarajs
Specialist II
Specialist II

=date(date#('31/AUG/11 01:57:39.000000000 PM','DD/MMM/YYYY hh:mm:ss.[fff] TT'),'DD/MM/YYYY hh:mm:ss')

View solution in original post

2 Replies
sivarajs
Specialist II
Specialist II

=date(date#('31/AUG/11 01:57:39.000000000 PM','DD/MMM/YYYY hh:mm:ss.[fff] TT'),'DD/MM/YYYY hh:mm:ss')

Not applicable
Author

Thanks Sivaraj!