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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out 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

Labels (1)
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!