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: 
Pomna
Creator III
Creator III

Date format

Please I need help formatting date in the load script.

My date reads 5-Jan-2016

but I need it to be 01/05/2016

 

Thanks.

1 Solution

Accepted Solutions
sunny_talwar
MVP
MVP

Try this

Date(Date#(DateFieldName, 'D-MMM-YYYY'), 'MM/DD/YYYY') as DateFieldName

View solution in original post

2 Replies
sunny_talwar
MVP
MVP

Try this

Date(Date#(DateFieldName, 'D-MMM-YYYY'), 'MM/DD/YYYY') as DateFieldName
Pomna
Creator III
Creator III
Author

Thank you. It worked!