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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Convert Date Formate

Hi Friends,

I need to convert the date format as below, Can someone please help me on this???

Date format at Source: "Sep 29,2015  12:04:58 PM"

I need to convert the date into "29-09-2015" (i.e. in DD-MM-YYYY format without time).

Thank you in Advance.

Best Regards,

Bhavesh Jain

1 Solution

Accepted Solutions
sasiparupudi1
Master III
Master III

=Date(floor(Timestamp#('Sep 29,2015  12:04:58 PM','MMM DD,YYYY  hh:mm:ss TT')),'DD/MM/YYYY')

View solution in original post

6 Replies
sasiparupudi1
Master III
Master III

=Date(floor(Timestamp#('Sep 29,2015  12:04:58 PM','MMM DD,YYYY  hh:mm:ss TT')),'DD/MM/YYYY')

Anonymous
Not applicable
Author

Hi Bhavesh,

date#(Date(Date field,'DD-MM-YYYY'))

sasiparupudi1
Master III
Master III

=Date(floor(Timestamp#('Sep 29,2015  12:04:58 PM','MMM DD,YYYY  hh:mm:ss TT')),'DD-MM-YYYY')

avinashelite

try like this:

date(floor(Date_field),'DD-MM-YYYY')

Not applicable
Author

Thank you !! It worked

sasiparupudi1
Master III
Master III

You are welcome